Skip to content

Instantly share code, notes, and snippets.

@jasperf
Last active April 20, 2024 04:42
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save jasperf/6395911 to your computer and use it in GitHub Desktop.
Save jasperf/6395911 to your computer and use it in GitHub Desktop.
Use wget to get a local copy of a site with all files and folders . This an ideal way to clone a (static html/css/javascript based ) site from the command line. #copy #clone #wget #download
#http://stackoverflow.com/questions/6348289/download-a-working-local-copy-of-a-webpage
#http://stackoverflow.com/questions/8755229/how-to-download-all-file-from-website-using-wget
#http://stackoverflow.com/questions/4272770/wget-with-authentication?rq=1
#add browser headers:
#--header="Accept: text/html" --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/30.0"
#add .htaccess authentication details:
#--password=password --user=user
wget -m -p -E -k -K -np http://site/path/
wget -p -k http://ExampleSite.com
# and another via Quora https://www.quora.com/How-do-you-export-a-WordPress-site-to-a-static-HTML
wget -k -K -E -r -l 10 -p -N -F --restrict-file-names=windows -nH http://website.com/
@amithm001
Copy link

#http://stackoverflow.com/questions/6348289/download-a-working-local-copy-of-a-webpage
#http://stackoverflow.com/questions/8755229/how-to-download-all-file-from-website-using-wget
#http://stackoverflow.com/questions/4272770/wget-with-authentication?rq=1
#add browser headers:
#--header="Accept: text/html" --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/30.0"
#add .htaccess authentication details:
#--password=password --user=user
wget -m -p -E -k -K -np http://site/path/
wget -p -k https://www.stellarhorizon.in

and another via Quora https://www.quora.com/How-do-you-export-a-WordPress-site-to-a-static-HTML

wget -k -K -E -r -l 10 -p -N -F --restrict-file-names=windows -nH http://website.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment