Hello,
This is not really bash but whatever, dont know where to put it.
Wget is a very useful tool and for those unaware of its power I would like to show how to download a website, partially or completely.
One thing that is useful is the option to ignore robots.txt
wget -H -r --level=5 -e robots=off http://somewebsite.org/
-H --span-hosts go to foreign hosts when recursive.
-r --recursive --level=5 recursive + recursion dept, in this case 5
-e robots=off execute + ignore robots.txt
This will download the entire webpage including files etc.
Must have used it a million times. screw GUI tools
![Tongue :P](http://ez.feedthetrolls.net/Smileys/default/tongue.gif)
Have a nice day.