Skip to content

Instantly share code, notes, and snippets.

View smiskiewicz1's full-sized avatar

Stephen Miskiewicz smiskiewicz1

View GitHub Profile
#!/bin/bash
if [ -z "$1" ]; then
readonly test_mode=false
else
echo "Running TEST mode. No destructive changes"
readonly test_mode=true
fi
JQPATH=$(which jq)