rafaelmaeuer
2/16/2017 - 10:02 AM

Download a file from the internet to my linux server - From http://stackoverflow.com/questions/14300794/how-do-i-download-a-file-from-the-in

# Using wget
wget -O /tmp/myfile 'http://www.google.com/logo.jpg'

# Using curl
curl -o /tmp/myfile 'http://www.google.com/logo.jpg'