Skip to content

Instantly share code, notes, and snippets.

@hayatbiralem
Created October 5, 2018 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hayatbiralem/fb946b6afffb78bc3b00076fcc2b4411 to your computer and use it in GitHub Desktop.
Save hayatbiralem/fb946b6afffb78bc3b00076fcc2b4411 to your computer and use it in GitHub Desktop.
Download website recursively with wget
#!/bin/bash
wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--restrict-file-names=unix \
--domains domain.com \
--no-parent \
http://domain.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment