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