mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
9 lines
150 B
Text
Executable file
9 lines
150 B
Text
Executable file
echo Null 0th arg:
|
|
""
|
|
echo $?
|
|
echo Null 1st arg:
|
|
# printf without args would print usage info
|
|
printf ""
|
|
echo $?
|
|
echo Null arg in exec:
|
|
exec printf ""
|