Created
March 26, 2014 18:52
-
-
Save joeblau/9790602 to your computer and use it in GitHub Desktop.
Patatap Sounds Download Script
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 | |
array=( wipe veil prism-1 prism-2 prism-3 clay piston-1 piston-2 piston-3 flash-1 flash-2 flash-3 dotted-spiral suspension confetti timer ufo splits moon strike zig-zag squiggle bubbles corona pinwheel glimmer ) | |
for i in "${array[@]}" | |
do | |
wget -nc "http://www.patatap.com/assets/A/$i.mp3" -P A/ | |
wget -nc "http://www.patatap.com/assets/B/$i.mp3" -P B/ | |
wget -nc "http://www.patatap.com/assets/C/$i.mp3" -P C/ | |
wget -nc "http://www.patatap.com/assets/D/$i.mp3" -P D/ | |
wget -nc "http://www.patatap.com/assets/E/$i.mp3" -P E/ | |
wget -nc "http://www.patatap.com/assets/F/$i.mp3" -P F/ | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment