Created
June 7, 2019 14:20
-
-
Save rafaelqm/3d5e94594421ea2687c64f319d47070f to your computer and use it in GitHub Desktop.
Backup your site when for any reason you lost the server access
This file contains hidden or 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
wget \ | |
--recursive \ # Download the whole site. | |
--no-clobber \ # Don't overwrite existing files. | |
--page-requisites \ # Get all assets/elements (CSS/JS/images). | |
--adjust-extension \ # Save files with .html on the end. | |
--span-hosts \ # Include necessary assets from offsite as well. | |
--convert-links \ # Update links to still work in the static version. | |
--restrict-file-names=windows \ # Modify filenames to work in Windows as well. | |
--domains yoursite.com \ # Do not follow links outside this domain. | |
--no-parent \ # Don't follow links outside the directory you pass in. | |
yoursite.com/whatever/path # The URL to download |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment