Created
February 19, 2015 07:30
-
-
Save korovamilk/a7b8ea5a13f4dbb5b519 to your computer and use it in GitHub Desktop.
CYGWIN shell script to automatically launch on Firefox a pretty good collection of Bitcoin, Litecoin and Worldcoin faucets.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# author: marco @ agate . io | |
# if this helped, donate your LTC here: Lcu3TvhGEfKfPndRMhoWjkSk9dAFXhYrn2 | |
FIREFOXBIN="/cygdrive/c/Program\ Files\ \(x86\)/Mozilla\ Firefox/firefox.exe -new-tab" | |
launchURL() { | |
myURL="$1" | |
faucet_name=$(echo $1 | cut -d\/ -f3) | |
echo "$(date +%H:%M:%S) ~ ${faucet_name}" | |
/cygdrive/c/Program\ Files\ \(x86\)/Mozilla\ Firefox/firefox.exe -new-tab "${myURL}" & | |
sleep 30 | |
} | |
echo | |
echo " #### BTC" | |
echo | |
launchURL "http://crococoin.com" | |
launchURL "http://www.btc-faucet.com" | |
launchURL "http://www.btcfaucet.co" | |
launchURL "http://www.bitcoinjackpot.co" | |
launchURL "https://www.coinfree.pl/bitcoin,faucet" | |
echo | |
echo " #### LTC" | |
echo | |
launchURL "https://www.coinfree.pl/litecoin,faucet" | |
launchURL "http://cryptospout.com/faucet.php?coin=LTC" | |
launchURL "http://www.ltc-faucet.com" | |
launchURL "http://www.ltcfaucet.co" | |
echo | |
echo " #### WDC" | |
echo | |
launchURL "http://www.wdcfaucet.co" | |
echo | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment