initial commit

This commit is contained in:
2019-01-30 09:24:33 -06:00
commit 2df388878f
6 changed files with 177 additions and 0 deletions

15
test.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
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
exit 0; #test4