Style Guide ----------- Basic ===== * Indent: two spaces. Spaces >> tabs. Creating `usage()` ================== * Always echo to `stderr`. * Exit with code 1. * Enclose required arguments in angle brackets: `-v ` * Enclose optional arguments in square brackets: `[-h hook]` usage() { echo "usage: $0 -v [-h hook]" exit 1 } Resources --------- * Parameter expansion: