Update test.sh

This commit is contained in:
2019-11-23 19:24:02 -06:00
parent efed5df57b
commit 6c7276f1b2

12
test.sh
View File

@@ -4,15 +4,11 @@ source /dev/stdin <<< "$(curl -sL http://scity.xyz/colorsinc)"
echo 'yes'
while getopts 'r' flag; do
case "${flag}" in
r) echo 'RESTART' ;;
*) echo 'nothing'
exit 1 ;;
esac
done
NTS=('NC')
for NTYPE in "${!NTS}"; do
echo "HERE: $NTYPE"
done
exit 0