utils
is a repository of scripts used by the Open Computing Facility
at the University of California, Berkeley.
In general, scripts which might be executed by a person should go here. System scripts (things that go primarily in cronjobs or similar) should go in the ocf/puppet repo instead.
Scripts of all languages are welcome, and should be organized into appropriate
directories. Use staff/
for anything that will typically only be executed by
staff.
If your utility is meant to be imported, it should probably go in ocflib instead. If you're writing a script whose functionality might be useful elsewhere, separate that out, put it in ocflib, and call it from a binary in this repo.
/bin/bash
over /bin/sh
unless your script is for some
alien environment where there is no bash. Don't be afraid to use bashisms.set -euo pipefail
, especially for any complicated scripts.
This (a) stops on errors, (b) errors on accessing undefined variables, and (c)
errors on failures in the middle of a pipeline. Together these make Bash into
something resembling a passable programming language.