- Plug in your SD card, HDD, or other block device and then use the following command to see which /dev/diskN node it's located on:
diskutil list- Unmount the disk where “N� is the number of the disk taken from the above command:
| #!/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/ |
| alias gityolo='git commit -am "DEAL WITH IT" && git push -f origin master' |