Web サイトを丸ごと保存するツール HTTrack を macOS にインストールして使ってみたので、ご紹介します。
HTTrack Version 3.49-2 (05/20/2017) を利用します。
brew install httrack
httrack で Web サイト内の link 全てを保存した実例をご紹介します。
$ httrack
Welcome to HTTrack Website Copier (Offline Browser) 3.49-2
Copyright (C) 1998-2017 Xavier Roche and other contributors
To see the option list, enter a blank line or try httrack --help
Enter project name :your_project_name
Base path (return=/Users/yourname/websites/) :
Enter URLs (separated by commas or blank spaces) :https://example.com
Action:
(enter) 1 Mirror Web Site(s)
2 Mirror Web Site(s) with Wizard
3 Just Get Files Indicated
4 Mirror ALL links in URLs (Multiple Mirror)
5 Test Links In URLs (Bookmark Test)
0 Quit
: 4
Proxy (return=none) :
You can define wildcards, like: -*.gif +www.*.com/*.zip -*img_*.zip
Wildcards (return=none) :
You can define additional options, such as recurse level (-r), separated by blank spaces
To see the option list, type help
Additional options (return=none) :
---> Wizard command line: httrack https://example.com -O "/Users/yourname/websites/your_project_name" --mirrorlinks -%v
Ready to launch the mirror? (Y/n) :Y
Mirror launched on Fri, 18 Oct 2019 13:32:47 by HTTrack Website Copier/3.49-2 [XR&CO'2014]
mirroring https://example.com with the wizard help..
Done.
Thanks for using HTTrack!
上記の設定でダウンロードしたので /Users/yourname/websites/your_project_name 以下の index.html ファイルをブラウザで開くと、ダウンロードした Web サイトの Top ページを表示できます。
cd /Users/yourname/websites/your_project_name
open index.html
以上、HTTrack で Web サイトを丸ごと保存したい、現場からお送りしました。