web-dev-qa-db-fra.com

Comment télécharger tous les liens vers des fichiers .Zip sur une page Web donnée en utilisant wget / curl?

Une page contient des liens vers un ensemble de fichiers .Zip, que je souhaite tous télécharger. Je sais que cela peut être fait par wget et curl. Comment est-il fait?

72
uyetch

La commande est:

wget -r -np -l 1 -A Zip http://example.com/download/

Options signifiant:

-r,  --recursive          specify recursive download.
-np, --no-parent          don't ascend to the parent directory.
-l,  --level=NUMBER       maximum recursion depth (inf or 0 for infinite).
-A,  --accept=LIST        comma-separated list of accepted extensions.
113
creaktive

La solution ci-dessus ne fonctionne pas pour moi. Pour moi seul celui-ci fonctionne:

wget -r -l1 -H -t1 -nd -N -np -A.mp3 -erobots=off [url of website]

Options signifiant:

-r            recursive
-l1           maximum recursion depth (1=use only this directory)
-H            span hosts (visit other hosts in the recursion)
-t1           Number of retries
-nd           Don't make new directories, put downloaded files in this one
-N            turn on timestamping
-A.mp3        download only mp3s
-erobots=off  execute "robots.off" as if it were a part of .wgetrc
66
K.-Michael Aye

J'utilise pour d'autres scénarios avec une magie parallèle:

curl [url] | grep -i [filending] | sed -n 's/.*href="\([^"]*\).*/\1/p' |  parallel -N5 wget -
4
M Lindblad