busybox/shell/hush_test/hush-misc/shift.tests

7 lines
91 B
Plaintext
Raw Normal View History

2007-05-21 03:52:18 +05:30
if test $# = 0; then
exec "$THIS_SH" $0 abc "d e"
fi
echo $0 $1 $2
shift
echo $0 $1 $2