I want to download all mp3 files in the website (even in root folder and sublinks).
For example i want to download all .mp3 links from the "http://example.org/musics/" and all sub-links.
How i cand do this?
thank you
I want to download all mp3 files in the website (even in root folder and sublinks).
For example i want to download all .mp3 links from the "http://example.org/musics/" and all sub-links.
How i cand do this?
thank you
you can use wget:
wget -r --no-parent http://example.com/musics/
Assuming that the files are available for public download. Just read the man page.
Update:
Reading through the man page, you will see this section: http://www.gnu.org/software/wget/manual/wget.html#Types-of-Files
It explains how to limit the files that it accepts when downloading. So you could add an accept option:
wget -r --no-parent --accept mp3,MP3 http://example.com/musics/
I think you should be using wget.