Download a file from the internet to my linux server - From http://stackoverflow.com/questions/14300794/how-do-i-download-a-file-from-the-internet-to-my-linux-server-with-bash
# Using wget
wget -O /tmp/myfile 'http://www.google.com/logo.jpg'
# Using curl
curl -o /tmp/myfile 'http://www.google.com/logo.jpg'