Initial public busybox upstream commit
[busybox4maemo] / shell / msh_test / msh-bugs / shift.tests
1 if test $# = 0; then
2     exec "$THIS_SH" $0 abc "d e" 123
3 fi
4 echo $0 $1 $2
5 shift
6 echo $0 $1 $2
7 shift 999
8 echo $0 $1 $2
9 shift 2
10 echo $0 $1 $2
11 shift 2
12 echo $0 $1 $2
13 shift
14 echo $0 $1 $2