Shell script tips and reminders

Bash Strict Mode:

#!/bin/bash
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
set -euo pipefail
IFS=$'\n\t'

More from sbgr
All posts