Curl commandline is all about the commandline parameters those use to pass to the curl executable from the console.
Curl is a very powerful executable built using libcurl
library. This runs as a commandline
application from the console(shell, cmd, etc). It has numerous number of commandline parameters which help the users in various purposes.
Few examples of the curl commandline
are:
Get html source of a web page:
curl http://www.example.com
Save html source into a file:
curl -o output.html http://www.example.com
A detail document of the curl commandline can be found from the Curl's Man Page.