Download multiple mp3 files from a given url
by GPGAgent from LinuxQuestions.org on (#6H0GY)
I would like to download all the mp3 files from a specific url, and I think I can use curl or wget, but so far I;ve had to use a text file with all the actual links I've scraped off the page.
Code:wget -nd -nc -r -l 2 --accept "mp3" --reject "*text" -t 2 -i url-to-mp3-fileIs there a beter way?
Code:wget -nd -nc -r -l 2 --accept "mp3" --reject "*text" -t 2 -i url-to-mp3-fileIs there a beter way?