Skip to content

Instantly share code, notes, and snippets.

@joeblau
Created March 26, 2014 18:52
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeblau/9790602 to your computer and use it in GitHub Desktop.
Save joeblau/9790602 to your computer and use it in GitHub Desktop.
Patatap Sounds Download Script
#!/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