#!/bin/bash

echo WGET SITE CLONER
echo TARGET URL:
read x
wget -nH -np -r $x
echo DONE
read -n1