Bsh/tests/for/multiple.sh

14 lines
132 B
Bash
Raw Normal View History

2022-02-08 17:50:03 +00:00
for a in arg1 arg2 arg3
do
echo $a
done
for a in a b c d e f g
do
echo $a
done
for g in in for while; do
echo $g
done