Skip to content

Instantly share code, notes, and snippets.

@alabeduarte
Last active March 8, 2017 00:02
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 alabeduarte/e897bb31d1971bb3440f to your computer and use it in GitHub Desktop.
Save alabeduarte/e897bb31d1971bb3440f to your computer and use it in GitHub Desktop.
Download a website entirely to read offline.
function _help() {
cat <<EOH
Usage: ./website_downloader.sh download http://xyz.xpto
EOH
}
case ${1} in
download)
wget -r -np -k $2
;;
*|help|-h)
_help
;;
esac
# chmod +x website_downloader.sh
# ./website_downloader.sh download http://xyz.xpto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment