Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/shell/ash_test/ash-misc/shift1.tests

Parent Directory Parent Directory | Revision Log Revision Log


Revision 816 - (show annotations) (download)
Fri Apr 24 18:33:46 2009 UTC (15 years, 1 month ago) by niro
File size: 455 byte(s)
-updated to busybox-1.13.4
1 $THIS_SH -c 'shift; echo "$@"' 0 1 2 3 4
2 #We do abort on -1, but then we abort. bash executes echo.
3 $THIS_SH -c 'shift -1; echo "$@"' 0 1 2 3 4
4 $THIS_SH -c 'shift 0; echo "$@"' 0 1 2 3 4
5 $THIS_SH -c 'shift 1; echo "$@"' 0 1 2 3 4
6 $THIS_SH -c 'shift 2; echo "$@"' 0 1 2 3 4
7 $THIS_SH -c 'shift 3; echo "$@"' 0 1 2 3 4
8 $THIS_SH -c 'shift 4; echo "$@"' 0 1 2 3 4
9 $THIS_SH -c 'shift 5; echo "$@"' 0 1 2 3 4
10 $THIS_SH -c 'shift 6; echo "$@"' 0 1 2 3 4