From 599e5a8a46c3269fdde6618b88d149116c119741 Mon Sep 17 00:00:00 2001 From: Nathaniel Landau Date: Mon, 2 Aug 2021 11:06:47 -0400 Subject: [PATCH] Add comment --- scriptTemplate.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scriptTemplate.sh b/scriptTemplate.sh index d29fc02..5ec4d20 100755 --- a/scriptTemplate.sh +++ b/scriptTemplate.sh @@ -175,6 +175,10 @@ fatal() { _alert_ fatal "${1}" "${2:-}"; _safeExit_ "1" ; } debug() { _alert_ debug "${1}" "${2:-}"; } verbose() { _alert_ debug "${1}" "${2:-}"; } +# ################################## Paste or write additional utility functions here + + +# ################################## Common Functions for script template _safeExit_() { # DESC: Cleanup and exit from a script # ARGS: $1 (optional) - Exit code (defaults to 0)