Skip to content

Instantly share code, notes, and snippets.

View derdennis1012's full-sized avatar

Dennis Bölling derdennis1012

  • Netzint GmbH
  • Gütenbach
View GitHub Profile
#!/bin/sh -e
MY_COMMAND="$0 $*"
exit_trap() {
# shellcheck disable=SC2181
if [ $? -eq 0 ]; then
return 0
fi
echo ""
echo "An error occurred."
echo "Try running in debug mode with 'sh -x ${MY_COMMAND}'"