Created
September 27, 2017 10:29
-
-
Save linuxsocist/54d8865e4c9d274b5186cce10e428390 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
#Variables | |
domain=$(echo $1 | sed 's/^.*\:\/\///g' | awk -F '/' '{print $1}' | rev | awk -F '.' '{print $1"."$2}' | rev) | |
url=$(echo $1 | sed 's/^.*\:\/\///g') | |
echo -e "Downloading "$domain"\n" | |
sleep 1 | |
wget \ | |
--recursive \ | |
--page-requisites \ | |
--html-extension \ | |
--convert-links \ | |
--restrict-file-names=windows \ | |
--domains $domain \ | |
--no-parent $url | |
echo -e "====================================\n" | |
echo -e "wgetsite has finished you may now check your download\n" | |
echo "====================================" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment