ash: bash compat: "shift $BIGNUM" is equivalent to "shift 1"
This commit is contained in:
10
shell/ash_test/ash-misc/shift1.tests
Executable file
10
shell/ash_test/ash-misc/shift1.tests
Executable file
@@ -0,0 +1,10 @@
|
||||
$THIS_SH -c 'shift; echo "$@"' 0 1 2 3 4
|
||||
#We do abort on -1, but then we abort. bash executes echo.
|
||||
$THIS_SH -c 'shift -1; echo "$@"' 0 1 2 3 4
|
||||
$THIS_SH -c 'shift 0; echo "$@"' 0 1 2 3 4
|
||||
$THIS_SH -c 'shift 1; echo "$@"' 0 1 2 3 4
|
||||
$THIS_SH -c 'shift 2; echo "$@"' 0 1 2 3 4
|
||||
$THIS_SH -c 'shift 3; echo "$@"' 0 1 2 3 4
|
||||
$THIS_SH -c 'shift 4; echo "$@"' 0 1 2 3 4
|
||||
$THIS_SH -c 'shift 5; echo "$@"' 0 1 2 3 4
|
||||
$THIS_SH -c 'shift 6; echo "$@"' 0 1 2 3 4
|
Reference in New Issue
Block a user