data/method/busybox/busybox-1.36.0/shell/hush_test/hush-psubst/emptytick.tests

17 lines
298 B
Plaintext
Executable File

true; ``; echo $?
false; ``; echo $?
true; `""`; echo $?
false; `""`; echo $?
true; ` `; echo $?
false; ` `; echo $?
true; $(); echo $?
false; $(); echo $?
true; $(""); echo $?
false; $(""); echo $?
true; $( ); echo $?
false; $( ); echo $?
exec ''; echo $?
echo Not reached