Archive for July, 2011
How to download all “English As a Second Language” podcasts
Use the following bash script to download all “English as a Second Language” podcasts. Enjoy :-) #download ESL for i in {1..710} do wget -c http://media.libsyn.com/media/eslpod/ESLPod$i.mp3 -O ESLPod`printf “%03i” $i`.mp3 done #download English Cafe podcasts for i in {1..300} do wget -c http://media.libsyn.com/media/eslpod/EC$i.mp3 -O EC`printf “%03i” $i`.mp3 done
Read Full Post | Make a Comment ( 1 so far )

