Skip to content

Instantly share code, notes, and snippets.

@ryesalvador
Created October 29, 2020 06:33
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ryesalvador/c1a15dcfe56504468ea9d8f3ac121ded to your computer and use it in GitHub Desktop.
Save ryesalvador/c1a15dcfe56504468ea9d8f3ac121ded to your computer and use it in GitHub Desktop.
A Bash script to download a full website using the wget command-line utility on Linux: https://youtu.be/pxdIjhTXqok
# A simple Bash script to download a full website using wget
#! /usr/bin/env bash
website=$1
echo $website
nohup wget --limit-rate=200k --no-clobber --convert-links --random-wait -r -p -E -e robots=off -U mozilla $website &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment