Downloading with cURL

You can download a file with cURL by using this command:

curl -LO <url>

The L options tells cURL to follow any redirects, if needed. The O option tells it to download to a file instead of stdout.