initial commit

This commit is contained in:
kake26 2024-03-29 14:54:50 -05:00
commit 69d63cb9ce
6 changed files with 139 additions and 0 deletions

18
script.bash Normal file
View file

@ -0,0 +1,18 @@
#!/bin/bash
set -eo pipefail
if [[ -n "${BASHD_DEBUG}" ]]; then # a inevitability that this will be used
set -x
fi
trap cleanup EXIT # A little more robust cleanup
cleanup() {
# We can clean up any temp files or what nots, but for now a place holder
true
}
source ./config_json.bash # can be json or ini, I preffer json
# Code goes here