Tag bash
2 bookmarks have this tag.
2 bookmarks have this tag.
Bash strict mode.
set -euxo pipefail
The -x is sometimes not needed, it prints out every input back. So, this is an option:
set -euo pipefail
This is Greg's (also known as GreyCat's) wiki. It has some pages which may be of interest for people doing Unix shell scripting or system administration.
All Bash quirks are here.