基本
引数をスペース区切りで先頭から取り出す
shift 2
のようにするとシフト数を指定できる
while [ "$1" != "" ]
do
echo $1
shift
done
foo.sh abc de
を叩くと以下の出力が得られる
abc
de
引数をスペース区切りで先頭から取り出す
shift 2
のようにするとシフト数を指定できる
while [ "$1" != "" ]
do
echo $1
shift
done
foo.sh abc de
を叩くと以下の出力が得られる
abc
de