web-dev-qa-db-ja.com

wget / curlを使用して特定のWebページ上の.Zipファイルへのすべてのリンクをダウンロードする方法は?

ページには、ダウンロードしたいすべての.Zipファイルへのリンクが含まれています。これはwgetとcurlでできることを知っています。どうやって?

72
uyetch

コマンドは次のとおりです。

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

オプションの意味:

-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

上記の解決策はうまくいきません。私にとってはこれだけが機能します:

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

オプションの意味:

-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

いくつかのパラレルマジックを使用した他のシナリオでは、以下を使用します。

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