download Podcast mp3
#!/bin/bash
start=2016-01-01
end=2016-10-31
while [[ $start < $end ]]
do
dt=$(date -d "$start + 1 day" +"%Y%m%d");
start=$(date -d "$start + 1 day" +"%Y-%m-%d");
wget http://cdn.flv.kataweb.it/deejay/audio/il_volo_del_mattino/$dt.mp3 -O ./mp3/il_volo_del_mattino_$dt.mp3
done
#!/bin/bash
start=2016-01-01
end=2016-05-27
while [[ $start < $end ]]
do
dt=$(date -d "$start + 1 day" +"%y%m%d");
start=$(date -d "$start + 1 day" +"%Y-%m-%d");
wget http://audio.radio24.ilsole24ore.com/radio24_audio/2016/$dt-mix24-storia-s.mp3
done