7 lines
219 B
Bash
7 lines
219 B
Bash
#!/bin/sh
|
|
## use a subshell to execute the actual program in case the
|
|
## program crashes or exits without an error message.
|
|
echo RUN "[$@]"
|
|
($@ 2>&1 || echo "ERROR: exited with $?") | grep -E '^ERROR:' && exit 1
|
|
exit 0
|