Skip to content

Instantly share code, notes, and snippets.

@jonfk
Created January 6, 2020 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonfk/38334498458d1c4a1841c03bae98cdb1 to your computer and use it in GitHub Desktop.
Save jonfk/38334498458d1c4a1841c03bae98cdb1 to your computer and use it in GitHub Desktop.
Default header for bash scripts
#!/bin/bash
# abort on nonzero exitstatus
set -o errexit
# abort on unbound variable
set -o nounset
# don't hide errors within pipes
set -o pipefail
# Print each command for debugging
# set -o xtrace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment