このサイトでは、ディレクトリからファイルを再帰的にダウンロードする方法についての記事を見ました。だから、次の行を実行しました。
wget -r -nH --cut-dirs=3 -A '*.bz2' -np http://www.xfce.org/archive/xfce-4.6.2/src/
インデックスページのみをダウンロードしてから自動的に削除します。
出力:
--2016-07-01 16:56:02-- http://www.xfce.org/archive/xfce-4.6.2/src/
Resolving www.xfce.org (www.xfce.org)... 138.48.2.103
Connecting to www.xfce.org (www.xfce.org)|138.48.2.103|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: http://archive.xfce.org/xfce/4.6.2/src/ [following]
--2016-07-01 16:56:17-- http://archive.xfce.org/xfce/4.6.2/src/
Resolving archive.xfce.org (archive.xfce.org)... 138.48.2.107
Connecting to archive.xfce.org (archive.xfce.org)|138.48.2.107|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html’
index.html [ <=> ] 8.05K --.-KB/s in 0.03s
2016-07-01 16:56:23 (247 KB/s) - ‘index.html’ saved [8239]
Removing index.html since it should be rejected.
FINISHED --2016-07-01 16:56:23--
Total wall clock time: 21s
Downloaded: 1 files, 8.0K in 0.03s (247 KB/s)
Webディレクトリには多くのtar.bz2
ファイルが含まれています。誰が私がどこに間違っているのか教えてもらえますか?
私のwgetバージョンは1.16.3
ベストアンサー1
httpを介してディレクトリのリストを取得するのは簡単ではないようです。以下をbz2
使用してファイルを取得できます。
wget -k -l 0 "http://archive.xfce.org/xfce/4.6.2/src/" -O index.html ; cat index.html | grep -o 'http://archive.xfce.org/xfce/4.6.2/src/[^"]*.bz2' | uniq -c | xargs wget