Skip to content

Instantly share code, notes, and snippets.

@nvictor
Last active September 12, 2022 12:44
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 nvictor/4b08969a18b5fbfd81337494fdf14ce6 to your computer and use it in GitHub Desktop.
Save nvictor/4b08969a18b5fbfd81337494fdf14ce6 to your computer and use it in GitHub Desktop.
Bash set options
#!/usr/bin/env bash
set -o errexit -o nounset -o xtrace -o pipefail
# or (set -euxo pipefail)
# See: https://tldp.org/LDP/abs/html/options.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment