Last active
November 8, 2020 21:27
-
-
Save javabrett/a859ab42c369a5afed5bb14ec95cf1fc to your computer and use it in GitHub Desktop.
Bash Strict Mode
This file contains 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
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Credit Aaron Maxwell : http://redsymbol.net/articles/unofficial-bash-strict-mode/