Examples of CURL Use From Command Line
Basic use of cURL involves simply typing curl at the command line, followed by the URL of the output to retrieve.
To retrieve the example.com homepage, type:
curl www.example.com
cURL defaults to displaying the output it retrieves to the standard output specified on the system (usually the terminal window). So running the command above would, on most systems, display the www.example.com source-code in the terminal window.
cURL can write the output it retrieves to a file with the -o flag, thus:
curl -o example.html www.example.com
This will store the source code for www.example.com into a file named example.html. While retrieving output, cURL will display a progress-bar showing how much of the output has downloaded. Note however that cURL does not show a progress bar when preparing to display the output in the terminal window, since a progress-bar is likely to interfere with the display of the output.
To download output to a file that has the same name as on the system it originates from, use the -O flag, for example:
curl -O www.example.com/example.html
If the server responds that the file (example.html) is moved to a different location (indicated with a Location: header and a 3XX response code), use the -L flag, for example:
curl -OL www.example.com/example.html
Curl offers a busload of useful tricks like proxy support, user authentication, FTP upload, HTTP post, SSL connections, cookies, file transfer resume, Metalink, and more.
Read more about this topic: CURL
Famous quotes containing the words examples of, examples, curl, command and/or line:
“It is hardly to be believed how spiritual reflections when mixed with a little physics can hold peoples attention and give them a livelier idea of God than do the often ill-applied examples of his wrath.”
—G.C. (Georg Christoph)
“In the examples that I here bring in of what I have [read], heard, done or said, I have refrained from daring to alter even the smallest and most indifferent circumstances. My conscience falsifies not an iota; for my knowledge I cannot answer.”
—Michel de Montaigne (15331592)
“You will trail across the rocks
and wash them with your salt,
you will curl between sand-hills
you will thunder along the cliff
break retreat get fresh strength
gather and pour weight upon the beach.”
—Hilda Doolittle (18861961)
“How did you get in the Navy? How did you get on our side? Ah, you ignorant, arrogant, ambitiouskeeping sixty two men in prison cause you got a palm tree for the work they did. I dont know which I hate worse, you or that malignant growth that stands outside your door. How did you ever get command of a ship? I realize in wartime they have to scrape the bottom of the barrel. But whered they ever scrape you up?”
—Frank S. Nugent (19081965)
“I had crossed de line of which I had so long been dreaming. I was free; but dere was no one to welcome me to de land of freedom. I was a stranger in a strange land, and my home after all was down in de old cabin quarter, wid de ole folks, and my brudders and sisters. But to dis solemn resolution I came; I was free, and dey should be free also; I would make a home for dem in de North, and de Lord helping me, I would bring dem all dere.”
—Harriet Tubman (c. 18201913)