Files
Misc-Scripts/test.sh
2018-10-15 22:20:52 -05:00

18 lines
264 B
Bash
Executable File

#!/usr/bin/env bash
source /dev/stdin <<< "$(curl -sL http://scity.xyz/colorsinc)"
while getopts 'r' flag; do
case "${flag}" in
r) echo 'RESTART' ;;
*) echo 'nothing'
exit 1 ;;
esac
done
exit 0