Created
May 25, 2017 08:16
-
-
Save pstaender/918510add00bb081362d7d59db83fa46 to your computer and use it in GitHub Desktop.
This file contains 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/sh | |
# download all dradio mp3 streams | |
for m3u_url in http://www.deutschlandradio.de/streaming/dlf.m3u http://www.deutschlandradio.de/streaming/dkultur.m3u http://www.deutschlandradio.de/streaming/dradiowissen.m3u http://www.deutschlandradio.de/streaming/dplus.m3u; do | |
url=$(curl -s $m3u_url) | |
filename=$(basename $m3u_url) | |
program="${filename%.*}" | |
curl $url > $program.mp3 & | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment