7 lines
78 B
Bash
7 lines
78 B
Bash
#!/bin/bash
|
|
|
|
for ANIMAL in man bear pig dog cat sheep
|
|
do
|
|
echo "$ANIMAL"
|
|
done
|