WGET
- Alle Links einer Seite herunterladen
wget --no-directories --accept='*.mp3*' -r -l 1 <URL>
-no-directories save all files in current directory
- -accept='*.log' accepted extensions (pattern)
-r recursive
-l 1 one level of recursion
wget --no-directories --accept='*.mp3*' -r -l 1 <URL>
-no-directories save all files in current directory
- -accept='*.log' accepted extensions (pattern)
-r recursive
-l 1 one level of recursion