diff options
| author | Xe Iaso <me@xeiaso.net> | 2024-01-15 14:20:50 -0500 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2024-01-15 14:20:50 -0500 |
| commit | ae5283f759ecfc72f6779f57231991d0a881a8a9 (patch) | |
| tree | 2dcfa23ed12ce8edbdf0326c2e0562daa84e4f9d | |
| parent | 7904f8ce518ce36df1b346a7a0c7786404ffb1ae (diff) | |
| download | xesite-ae5283f759ecfc72f6779f57231991d0a881a8a9.tar.xz xesite-ae5283f759ecfc72f6779f57231991d0a881a8a9.zip | |
fuck
Signed-off-by: Xe Iaso <me@xeiaso.net>
| -rw-r--r-- | lume/src/notes/2024/bash-hashmap.mdx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lume/src/notes/2024/bash-hashmap.mdx b/lume/src/notes/2024/bash-hashmap.mdx index bafb478..61c4685 100644 --- a/lume/src/notes/2024/bash-hashmap.mdx +++ b/lume/src/notes/2024/bash-hashmap.mdx @@ -55,7 +55,7 @@ done You can iterate over the values with a `for` loop on the `*` value: ```shell -for region in "${FLY_REGIONS[@]}"; do +for region in "${FLY_REGIONS[*]}"; do echo "region: $region" done ``` |
