--- categories: - Programming Languages tags: - shell --- # Loops in bash ```bash for element in "${arr[@]}" do echo "$element" done ```