Download all mp3 on a webpage
September 29th, 2009 | How To, Linux, OS X, Ubuntu | No commentsEver wanted to download all the audio files off a particular webpage? You could manually click and save each one or load up terminal and use this one-liner. Remember to only use this for sites that are allowing you do download their content free of charge; stealing is wrong!
curl -s SITEURL | grep -oie “\(http\|https\|ftp\|www\).*\.\(mp3\|aac\|wav\|m4a\|ogg\|flac\|aiff\|mp4\|wma\|ram\|ra\)” [...]