Bash-set-options: Difference between revisions
Jump to navigation
Jump to search
(Created page with "# set -o nounset # Treat unset variables as an error # set -o pipefail # Any non-zero exits in pipes fail # set -e...") |
(No difference)
|
Latest revision as of 16:22, 15 October 2021
- set -o nounset # Treat unset variables as an error
- set -o pipefail # Any non-zero exits in pipes fail
- set -e # Any non-zero exit is a failure