mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
8 lines
144 B
Text
Executable file
8 lines
144 B
Text
Executable file
f() { false; return; echo BAD; };
|
|
{ f; echo One:$?; }; echo Zero:$?
|
|
|
|
f() { false; return; };
|
|
f; echo One:$?
|
|
|
|
f() { return 5; };
|
|
f; echo Five:$?
|