8 lines
97 B
Bash
8 lines
97 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
myArray=("cat" "dog" "mouse" "frog")
|
||
|
|
||
|
for str in ${myArray[@]}; do
|
||
|
echo $str
|
||
|
done
|