5 lines
113 B
Bash
5 lines
113 B
Bash
|
|
collection=("first" "second" "third" "fourth" "something else")
|
||
|
|
for x in "${collection[@]}"; do
|
||
|
|
echo "$x"
|
||
|
|
done
|