16 lines
280 B
Bash
Executable File
16 lines
280 B
Bash
Executable File
#!/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
|