22 lines
212 B
Bash
Raw Normal View History

2020-05-03 14:10:04 +02:00
#!/bin/bash
# M111 - TP9 - afficheargs.sh
echo $*
for i in $*
do
echo $i
done
for i
do
echo $i
done
while test $# != 0 # ou bien [ ou bien [[
do
echo $1
shift
done