Added some comments to the top

This commit is contained in:
2024-02-11 16:35:33 -05:00
parent c82b13f3ca
commit 568050cb53

View File

@@ -1,5 +1,8 @@
#!/usr/bin/env bash
# TODO: Add a comment block at the top of the script, describing what it does.
# TODO: Add a '-h' or '--help' flag, that displays information about the script, and how to use it.
set -o errexit # Stop executing when a command fails
set -o nounset # Stop executing when accessing an unset variable
set -o pipefail # Treat a pipeline as failing, even if one command in the pipeline fails