Skip to content

Instantly share code, notes, and snippets.

@felipecwb
Last active August 22, 2018 12:57
Show Gist options
  • Save felipecwb/fcc6935e552fe88354bd6410ea03054d to your computer and use it in GitHub Desktop.
Save felipecwb/fcc6935e552fe88354bd6410ea03054d to your computer and use it in GitHub Desktop.
WGET beeing Fucking Awesome!!!
#!/usr/bin/env bash
endpoint="$1"
domain="$(echo $endpoint | cut -d'/' -f3)"
wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--restrict-file-names=windows \
--no-parent \
--domains $domain \
$endpoint
echo "Well done! some links can be broken!"
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment