You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
251 B
25 lines
251 B
#!/bin/bash
|
|
|
|
source config.sh
|
|
|
|
case "$1" in
|
|
|
|
# Start bitcoin and chips
|
|
"bitchips")
|
|
./do/bitchips.sh
|
|
exit 1
|
|
;;
|
|
|
|
# Example
|
|
"example")
|
|
./do/example.sh
|
|
exit 1
|
|
;;
|
|
|
|
# Default
|
|
*)
|
|
echo -e "James, is that ${RED}you${NC}?!"
|
|
exit 1
|
|
;;
|
|
|
|
esac
|
|
|