Files

7 lines
78 B
Bash
Raw Permalink Normal View History

2026-02-03 19:29:16 -05:00
#!/bin/bash
for ANIMAL in man bear pig dog cat sheep
do
echo "$ANIMAL"
done