web-dev-qa-db-ja.com

wgetでダウンロードする特定の種類のファイルを無視するにはどうすればよいですか?

.jpgファイルのみを含めたいので、wget.png.htmlファイルを無視するにはどうすればよいですか。

やっています:

wget  -R index.html,*tiff,*pdf,*jpg -m http://example.com/

しかし、それは機能していません。

26
Nisar

使用

 --reject jpg,png  --accept html

特定の拡張子を持つファイルを除外/含めるオプション、 http://www.gnu.org/software/wget/manual/wget.html#Recursive-Accept_002fReject-Options を参照してください。

ワイルドカード文字を含むパターンを引用符で囲みます。そうしないと、シェルによって展開されます。 http://www.gnu.org/software/wget/manual/wget.html#Types-of-Files

42
mvw
# -r : recursive    
# -nH : Disable generation of Host-prefixed directories
# -nd : all files will get saved to the current directory
# -np : Do not ever ascend to the parent directory when retrieving recursively. 
# -R : don't download files with this files pattern
# -A : get only *.html files (for this case)

たとえば:

wget -r -nH -nd -np -A "*.html" -R "*.gz, *.tar"  http://www1.ncdc.noaa.gov/pub/data/noaa/1990/
8
Cristian

アーカイブを除くすべてのファイルをダウンロードする例:

wget -r -k -l 7 -E -nc \
 -R "*.gz, *.tar, *.tgz, *.Zip, *.pdf, *.tif, *.bz, *.bz2, *.rar, *.7z" \
 -erobots=off \
 --user-agent="Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36" \
 http://misis.ru/
0
John Smith