Last active
August 22, 2018 12:57
-
-
Save felipecwb/fcc6935e552fe88354bd6410ea03054d to your computer and use it in GitHub Desktop.
WGET beeing Fucking Awesome!!!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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