3 lines
105 B
Bash
3 lines
105 B
Bash
|
|
# Don't want subsequent commands to run after nonzero exit? Wrappy in happy!
|
||
|
|
happy() { $@ || exit $?; }
|