Skip to content

Instantly share code, notes, and snippets.

@benaryorg
Created October 15, 2015 19:00
Show Gist options
  • Save benaryorg/8255147c4f1bdef81a6f to your computer and use it in GitHub Desktop.
Save benaryorg/8255147c4f1bdef81a6f to your computer and use it in GitHub Desktop.
#!/bin/sh
URL='http://zeldauniverse.net/media/music/the-wind-waker-original-soundtrack/'
FILE_SCHEMA='http:\/\/zeldauniverse\.s3\.amazonaws\.com\/soundtracks\/thewindwakerost\/cd[12]\/The_Legend_of_Zelda_-_The_Wind_Waker.*\.mp3'
curl $URL | egrep $FILE_SCHEMA | cut -c 14- | sed -E 's/\.mp3.*$/.mp3/' | wget -i -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment