Download file using curl
As an alternative of wget, you can use curl to download file from your terminal
wget method
wget http: //nginx.org/download/nginx-1.1.14.tar.gz
curl method
curl -O http: //nginx.org/download/nginx-1.1.14.tar.gz
p/s Make sure you remove space between http: and // in the sample ( http: // ). Don’t know why recently my syntax highlighter auto adding “a” tag for the link.
