This website requires JavaScript.
Explore
Help
Register
Sign In
emo
/
busybox
Watch
1
Star
0
Fork
0
You've already forked busybox
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
c56d12505b
busybox
/
shell
/
hush_test
/
hush-misc
/
shift.tests
15 lines
183 B
Plaintext
Raw
Normal View
History
Unescape
Escape
hush: fix shift + $0 bug; add testcase
2007-05-21 03:52:18 +05:30
if test $# = 0; then
hush: improve 2 testsuite tests
2007-05-24 18:52:01 +05:30
exec "$THIS_SH" $0 abc "d e" 123
hush: fix shift + $0 bug; add testcase
2007-05-21 03:52:18 +05:30
fi
echo $0 $1 $2
shift
echo $0 $1 $2
hush: improve 2 testsuite tests
2007-05-24 18:52:01 +05:30
shift 999
echo $0 $1 $2
shift 2
echo $0 $1 $2
shift 2
echo $0 $1 $2
shift
echo $0 $1 $2
Reference in New Issue
Copy Permalink