Skip to content

Instantly share code, notes, and snippets.

@arifsuhan
Last active November 17, 2023 08:58
Show Gist options
  • Save arifsuhan/c7a7f0b697ac0f65e1963cfca81a8e73 to your computer and use it in GitHub Desktop.
Save arifsuhan/c7a7f0b697ac0f65e1963cfca81a8e73 to your computer and use it in GitHub Desktop.
Wget Download website
wget -p -k [domain]
#base
url=""
wget -r -np --cut-dirs=2 $url
# skip exist
wget -r -np -nc --cut-dirs=2 $url
# only meta data
wget --recursive --no-clobber --page-requisites --html-extension --convert-links --domains=$url $url
# continue same file
wget -r $url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment