initial commit
This commit is contained in:
commit
69d63cb9ce
6 changed files with 139 additions and 0 deletions
18
script.bash
Normal file
18
script.bash
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue