1 2 3 4 5 6 7 8 9 10 11
#!/bin/sh PROGNAME=$(basename "$0") error_exit() { echo "${PROGNAME}: ${1:-"Unknown Error"}" 1>&2 exit 1 } exit 0