I’ll introduce how to bulk download an entire website using the wget command.
I researched and practiced how to bulk download using the wget command for the purpose of backing up a WordPress website with only a few pages.
wget \\
--mirror \\
--page-requisites \\
--span-hosts \\
--quiet --show-progress \\
--no-parent \\
--convert-links \\
--no-check-certificate \\
--adjust-extension \\
--execute robots=off \\
https://example.com
--span-hosts
option if there are many external linksAbove, I bulk downloaded an entire website using the wget command.
That’s all from the Gemba.