web-dev-qa-db-ja.com

完全なウェブページをダウンロードする

どうすればdownload a complete webpageからterminalまで。ウェブページのアドレスを提供すると、それに関連するサブページが自動的に示されます。 GUIの代替はありますか?

1
TechJhola

私が知る最も簡単な方法:wget -r URL_OF_PAGE。デフォルトの再帰の深さは5です。詳細は here を参照してください。

AUに関する質問: download-website-and-make-it-searchable

1
noleti

この種のジョブには--mirrorスイッチを使用することもできます。

wget -m URL_OF_PAGE

man wgetは次のように言っています。

-m
--mirror
Turn on options suitable for mirroring.  This option turns on recursion and time-stamping, sets infinite recursion depth and keeps FTP directory listings.  It is currently equivalent to -r -N -l inf --no-remove-listing.
1
code_monk