mirror of
https://github.com/sheumann/hush.git
synced 2025-02-03 23:34:27 +00:00
85405c80a2
Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
9 lines
144 B
Plaintext
Executable File
9 lines
144 B
Plaintext
Executable File
f() { false; return; echo BAD; };
|
|
{ f; echo One:$?; }; echo Zero:$?
|
|
|
|
f() { false; return; };
|
|
f; echo One:$?
|
|
|
|
f() { return 5; };
|
|
f; echo Five:$?
|