The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fuck

Signed-off-by: Xe Iaso <me@xeiaso.net>

Xe Iaso ae5283f7 7904f8ce

+1 -1
+1 -1
lume/src/notes/2024/bash-hashmap.mdx
··· 55 55 You can iterate over the values with a `for` loop on the `*` value: 56 56 57 57 ```shell 58 - for region in "${FLY_REGIONS[@]}"; do 58 + for region in "${FLY_REGIONS[*]}"; do 59 59 echo "region: $region" 60 60 done 61 61 ```