Curl

# Download a file without changing its name
curl --remote-name "https://example.com/linux-distro.iso"

# Expand a Shortened URL 
curl --head --location "https://bit.ly/2yDyS4T"

# Basic Authentication
curl -v -X GET 'http://target.com/login?username=admin&password=password' 

Last updated