initial commit

This commit is contained in:
Dawson Matthews
2025-12-02 09:21:02 -07:00
commit 84d746859c
10 changed files with 6719 additions and 0 deletions

15
apply.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Make sure a config file was provided
if [ $# -lt 1 ]; then
echo "Usage: $0 <config file>"
exit
fi
# Attempt to parse the config file
INPUT_FILE=$1
echo "Parsing config info from $INPUT_FILE..."
TEST=$(jq '.outputs[]' $INPUT_FILE)
echo $TEST[0]