The Magic CURL command

Source: Internet
Author: User

CURL? Well, it's a long story.

This thing is now one of the built-in command-line tools on the Apple machine, and it shows its charm.

1)
Apart, let's start from here!

Java code
    1. Curl http: //www.yahoo.com


After the carriage return, the www.yahoo.com HTML is splinters on the screen ~~~~~

2)
Well, if you want to save the reading page, do you want to do this?

Java code
    1. Curl http: //www.yahoo.com > Page.html



Sure, but don't be so troublesome!
With Curl's built-in option, save the HTTP result, using this option:-O

Java code
    1. Curl-o page.html http: //www.yahoo.com



This way, you can see a download page progress indicator appears on the screen. When we get to 100%, it's OK.

3)
What what?! Not accessible? It must be that your proxy has not been set.
Using Curl, this option allows you to specify the proxy server and its port to use for HTTP access:-X

Java code
    1. Curl-x 123.45. 67.89: 1080-o page.html http: //www.yahoo.com




4)
It's annoying to visit some websites, and he uses cookies to record session information.
Browsers like Ie/nn, of course, can easily handle cookie information, but what about our curl? .....
Let's learn this. Option:-D <--This is to put the cookie information inside the HTTP response into a special file.

Java code
    1. Curl-x 123.45. 67.89: 1080-o page.html-d cookie0001.txt http: //www.yahoo.com



This way, when the page is saved to page.html, the cookie information is stored in the cookie0001.txt.


5)
So, how do you continue to use the cookie information you left last time you visit? You know, a lot of websites rely on monitoring your cookie information,
To determine if you are not visiting their website by the rules.
This time we use this option to append the last cookie information to the HTTP request:-B

Java code
    1. Curl-x 123.45. 67.89: 1080-o page1.html-d cookie0002.txt-b cookie0001.txt http://www.yahoo.com



In this way, we can almost simulate all the IE operation, to visit the Web page!


6)
Wait a minute, ~~~~~, I seem to have forgotten something ~~~~~
That's right! is the browser information ~ ~ ~

Some annoying websites always want us to use certain browsers to access them, and sometimes even more, we have to use some specific versions ~ ~ ~
NND, where is the time to find these weird browsers for it!?

Fortunately, Curl provides us with a useful option that allows us to arbitrarily specify our own browser information as claimed by this visit:-A

Java code
    1. Curl-a "mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0) " -X 123.45. 67.89: 1080-o page.html-d cookie0001.txt http: //www.yahoo.com
Java code
    1. Curl-a "mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0) " -x 123.45. 67.89:1080-o page.html-d cookie0001.txt http://www.yahoo.com



In this way, the server side to the requirements of access, will think you are a running on Windows 2000 IE6.0, hehe Hey, you may actually use an apple machine!

and "mozilla/4.73 [en] (X11; U Linux 2.2; i686 "You can tell each other that you are running Linux on a PC with the Netscape 4.73, huh huh?


7)
Another common limiting method on a server side is to check HTTP access referer. For example, you first visit the homepage, and then access the download page specified in the, this second access to the Referer address is the first successful access to the page address. In this way, the server side as long as the download page to find the Referer address of a visit is not the address of the home, it can be concluded that it is a thief ~~~~~

I just want to steal ~~~~~!!.
Fortunately, Curl gives us the option to set Referer:-E

Java code
    1. Curl-a "mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0) " -X 123.45. 67.89: 1080-e "mail.yahoo.com"-O page.html-d cookie0001.txt http: //www.yahoo.com



In this way, you can cheat each other's server, you are from the mail.yahoo.com click on a chain took over, oh hehe


8)
It says something important is missing out! -----Use Curl to download files

Just now, download the page to a file, you can use-o, download the same file.
For example, Curl-o 1.jpg Http://cgi2.tky.3web.ne.jp/~zzh/screen1.JPG
Here we teach you a new option:-O
Uppercase O, so used: Curl-o Http://cgi2.tky.3web.ne.jp/~zzh/screen1.JPG
In this way, you can follow the file name on the server, automatically exist locally!

Another better use.
If Screen1. There are also screen2.jpg and screen3 outside of JPG. JPG 、....、 Screen10. JPG needs to be downloaded, is it difficult for us to write a script to complete these operations?
Don't do it!
In curl, this is the way to write:

Java code
    1. Curl-o http: //cgi2.tky.3web.ne.jp/~zzh/screen[1-10]. JPG



Oh, what a bad, huh?! ~~~

9)
Come again, we continue to explain the download!

Java code
    1. Curl-o http: //cgi2.tky.3web.ne.jp/~{zzh,nick}/[001-201]. JPG



The resulting download is
~zzh/001.jpg
~zzh/002.jpg
...
~zzh/201.jpg
~nick/001.jpg
~nick/002.jpg
...
~nick/201.jpg

Is it convenient enough? Ha ha haha

Hey? It's too early to be happy.
Because the Zzh/nick under the file name are 001,002...,201, downloaded files with the same names, the back of the previous files are covered out ~ ~ ~

It's OK, we have more ruthless!
Curl-o #2_ #1.jpg http://cgi2.tky.3web.ne.jp/~{zzh,nick}/[001-201]. Jpg

-This is ..... Custom file name download?
--to the enemy, hehe!

#1是变量, referring to the {Zzh,nick} section, the first value Zzh, and the second time, Nick
#2代表的变量, it is the second variable part---[001-201], the value is added from 001 to 201
In this way, the name of the downloaded file is customized, and it becomes this:
Original: ~zzh/001.jpg---> After download: 001-zzh. Jpg
Original: ~nick/001.jpg---> After download: 001-nick. Jpg

In this way, not afraid of the file name, hehe


9)
Continue to download
We usually on the Windows platform, flashget such a tool can help us to block parallel download, but also can be disconnected to continue transmission.
Curl in these areas also do not lose to who, hehe

For example, we download screen1. JPG, and suddenly dropped, so we can start the continuation.

Java code
    1. Curl-c-O http: //cgi2.tky.3wb.ne.jp/~zzh/screen1. JPG



Of course, you don't have to take a flashget download half of the files to fool me ~ ~ ~ ~ half of the other download software files may not be able to use OH ~ ~ ~

Block download, we can use this option:-R
Examples Show
For example, we have a Http://cgi2.tky.3web.ne.jp/~zzh/zhao1.mp3 to download (Miss Zhao's telephone recitation)
We can use this command:

Java code
    1. Curl-r 0- 10240-o "Zhao.part1" Http:/cgi2.tky.3web.ne.jp/~zzh/zhao1.mp3 &\
    2. Curl-r 10241- 20480-o "Zhao.part1" Http:/cgi2.tky.3web.ne.jp/~zzh/zhao1.mp3 &\
    3. Curl-r 20481- 40960-o "Zhao.part1" Http:/cgi2.tky.3web.ne.jp/~zzh/zhao1.mp3 &\
    4. Curl-r 40961-o "Zhao.part1" Http:/cgi2.tky.3web.ne.jp/~zzh/zhao1.mp3


This will allow you to download the tiles.
But you need to merge the broken files yourself.
If you use UNIX or apples, use cat zhao.part* > Zhao.mp3 to
If the use of Windows, with copy/b to solve it, hehe

The above is the HTTP protocol download, in fact, FTP can also be used.
Usage,

Java code
    1. Curl-u name:passwd ftp: //ip:port/path/file


or familiar to everyone.

Java code
    1. Curl ftp: //name:[email protected]:p ort/path/file



10)
After the download, it is natural to upload the next.
The option to upload is-t

For example, we send a file to ftp: curl-t localfile-u name:passwd ftp://upload_site:port/path/

Of course, uploading files to an HTTP server can also
Like Curl-t LocalFile http://cgi2.tky.3web.ne.jp/~zzh/abc.cgi.
Note that at this time, the protocol used is the put method of HTTP

Just said put, hey, naturally let the old service think up the other several methos have not said it!
Neither get nor post can be forgotten.

HTTP submits a form, more commonly used is the post mode and get mode

Get mode what option is not needed, just write the variable in the URL.
Like what:

Java code
    1. Curl http: //www.yahoo.com/login.cgi?user=nickwolfe&password=12345


The option for Post mode is-D

For example, curl-d "user=nickwolfe&password=12345" http://www.yahoo.com/login.cgi
is equivalent to issuing a login request to this site ~~~~~

In the end to use the Get mode or post mode, the opposite server to see the program settings.

It is important to note that file uploads on files in post mode, such as

Java code
    1. <form method= "POST" enctype= "Multipar/form-data" action= " http://cgi2.tky.3web.ne.jp/~zzh/up_ file.cgi ">
    2. <input Type=file name=upload>
    3. <input type=submit name=nick value="Go" >
    4. </form>

Such an HTTP form, which we want to emulate with curl, is the syntax:

Java code
    1. Curl-f upload= @localfile-F nick=go http: //cgi2.tky.3web.ne.jp/~zzh/up_file.cgi



Ro-Ro said so much, actually curl has a lot of tricks and usage
For example, when you use local certificates for HTTPS, you can

Java code
    1. CURL-E Localcert.pem https: //remote_server


For example, you can also use curl to check the dictionary through the Dict protocol ~~~~~

Java code
    1. Curl Dict: //dict.org/d:computer



Let's talk about it here today, huh? The Crazy Curl feature requires you to---together to discover.

The Magic CURL command

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.