mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02: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 ""
|