howtothings.co.uk

Full Version: [LINUX] Little Sitecloner-Script
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I just want to share a little script which I made.
You can use it to clone websites for offline use of websites or phishing-purposes.
I know that this is not a big thing, but it might be useful for some beginners

Code:
#!bin/sh

# wget Websitecloner-Script

echo Enter URL:
read URL
echo
echo Enter Download-Directory:   # if not existing it will be created
read DD
echo Do you want to clone the whole website or just the index.html? hole/index # type whole for the whole site and index for index.html
read WHOLE
if [ -d "$DD" ]
then
     cd $DD
else
     mkdir $DD
     cd $DD
fi
if $HOLE = whole
then
     wget -r --page-requisites --convert-links -U Mozilla -erobots=off -w 5 $URL
else
     wget --page-requisites --convert-links -U Mozilla -erobots=off -w 5 $URL
fi
echo
echo site cloned