source: MondoRescue/branches/2.2.9/mindi-busybox/shell/ash_test/ash-misc/shift1.tests@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
  • Property svn:executable set to *
File size: 455 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.