Skip to content

Instantly share code, notes, and snippets.

@yousefamar
Created December 6, 2015 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yousefamar/cdff9ba606182a78487f to your computer and use it in GitHub Desktop.
Save yousefamar/cdff9ba606182a78487f to your computer and use it in GitHub Desktop.
#!/usr/bin/sh
mkdir -p ./di.fm
cd ./di.fm
curl --silent "http://listen.di.fm/public3" | python -mjson.tool | grep playlist | sed -e 's/^[[:space:]]*//' | cut -d " " -f2 | tr -d '"' \
| while read url
do
echo "Downloading: $url"
curl -O "$url"
done
cd -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment