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