Created
November 29, 2020 23:43
-
-
Save marydn/d3d5072391d53a1691d10c408c4329e4 to your computer and use it in GitHub Desktop.
Download a whole website including assets using wget
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget \ | |
--recursive \ | |
--page-requisites \ | |
--adjust-extension \ | |
--span-hosts \ | |
--convert-links \ | |
--domains gurucall.io \ | |
--no-parent \ | |
https://example.io |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment