bash-util/errhandl.bash
2023-02-22 21:41:54 -06:00

2 lines
105 B
Bash

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