|
|
|
|
|
by oblio
4172 days ago
|
|
I use this holy trinity in most of my scripts: set -o nounset # set -u set -o errexit # set -e set -o pipefail # I'm not sure this has a short form. I use the long forms for the option names because they're self documenting. If anyone has more suggestions, I'm all ears. |
|
http://www.dwheeler.com/essays/filenames-in-shell.html