Skip to content

Instantly share code, notes, and snippets.

@kubido
Created November 17, 2014 07:04
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 kubido/ea60406fe1de062bc3b4 to your computer and use it in GitHub Desktop.
Save kubido/ea60406fe1de062bc3b4 to your computer and use it in GitHub Desktop.
for i in `seq 1 114`; do
if [ $i -lt 10 ]; then
file="00$i"
elif [ $i -lt 100 ]; then
file="0$i"
else
file=$i
fi
wget "http://download.quranicaudio.com/quran/mishaari_raashid_al_3afaasee/$file.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment