Created
March 12, 2025 05:43
-
-
Save ElijahLynn/19bcc9bac35a343c9f3f07adba3ed4da to your computer and use it in GitHub Desktop.
bash strict mode, with a good concise comment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# enable bash strict mode: exit on error (-e), undefined variables (-u), & pipe failures (-o pipefail) | |
set -euo pipefail |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment