eolas/Programming_Languages/Shell/Loops_in_bash.md

16 lines
147 B
Markdown
Raw Normal View History

2023-02-04 09:26:34 +00:00
---
categories:
- Programming Languages
tags:
- shell
---
# Loops in bash
```bash
for element in "${arr[@]}"
do
echo "$element"
done
```