If you download multiple files from the same site at the same time, Curl tries to reuse the links (connection).
1 Curl http://www.google.com 2 <HTML> 3 <HEAD> 4 <meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "> 5 <title>302 moved</title> 6 </HEAD> 7 <BODY> 8
The above output indicates that the requested file was transferred to HTTP://WWW.GOOGLE.COM.HK.
This is possible by forcing redirection by using the-l option
1 # Let Curl use address redirection, at which point the GOOGLE.COM.HK site 2 curl-l http://www.google.com is queried
Breakpoint Continuation
Using the-C option, you can use the breakpoint continuation feature for large files, such as:
1 # When the file ends before the download completes the process 2 $ curl-o http://www.gnu.org/software/gettext/manual/gettext.html3 ############## 20.1%4 5 # Continuing to download the file by adding the-C option, the downloaded file will not be re-downloaded 6 curl-c-o http://www.gnu.org/software/gettext/manual/gettext.html7 ########## ##### 21.1%
Using network speed limiting for curl
Limit the maximum network usage of curl with the--limit-rate option
1 # download Speed Max no more than 1000b/second2 3 Curl--limit-rate 1000b-o http://www.gnu.org/software/gettext/manual/gettext.html
Download files that have been modified in the specified time
When downloading a file, you can determine the last modified date of the file, if the file has been modified within the specified date, download it, otherwise it will not be downloaded.
This feature can be achieved by using the-Z option:
1 # If the yy.html file has been updated since 2011/12/21, it will be downloaded 2 curl-z 21-dec-11 http://www.example.com/yy.html
Curl Authorization
A user name and password can be authorized with the-u option when accessing a page that requires authorization
1 curl-u username:password URL2 3 # It is common practice to enter only the user name at the command line, followed by a prompt for a password, which guarantees that the password will not be disclosed when the history is viewed 4 curl-u username URL
Downloading files from an FTP server
Curl also supports FTP downloads, and if you specify a file path in the URL instead of a specific file name to download, curl lists all the file names in that directory rather than downloading all the files in that directory
1 # List all folders and files under public_html 2 curl-u ftpuser:ftppass-o ftp://ftp_server/public_html/3 4 # Download xss.php file 5 curl-u ftpuser:ft Ppass-o ftp://ftp_server/public_html/xss.php
Uploading files to an FTP server
The-t option uploads the specified local file to the FTP server
# upload MyFile.txt files to server curl-u ftpuser:ftppass-t myfile.txt ftp://ftp.testserver.com# simultaneously uploads multiple files curl-u ftpuser:ftppass-t " {file1,file2} "ftp://ftp.testserver.com# saved from standard input to a file specified by the server curl-u ftpuser:ftppass-t-ftp://ftp.testserver.com/ Myfile_1.txt
For more information
Get more link information by using-V and-trace
Querying words through a dictionary
1 # Query The meaning of bash words 2 Curl DICT://DICT.ORG/D:BASH3 4 # List all available dictionaries 5 Curl DICT://DICT.ORG/SHOW:DB6 7 # Query The meaning of the bash word in the Foldoc dictionary 8 Curl Dict://dict.org/d:bash:foldoc
Set up a proxy for curl
-X option to add agent functionality to curl
1 # Specify the proxy host and Port 2 curl-x proxysever.test.com:3128 http://google.co.in
Other web site collation
Saving and using Web site cookie information
1 # Save the cookie information of the website to the Sugarcookies file 2 curl-d sugarcookies http://localhost/sugarcrm/index.php3 4 # Use last saved cookie information 5 curl -B sugarcookies http://localhost/sugarcrm/index.php
Passing Request data
Default curl uses Get method to request data, in this way directly through the URL to pass the data
You can use the--data/-d method to specify that data is passed by post
1 # GET2 Curl-u username https://api.github.com/user?access_token=XXXXXXXXXX3 4 # POST5 curl-u username--data "Param1=v Alue1¶m2=value "HTTPS://API.GITHUB.COM6 7 # You can also specify a file to pass the contents of the file as data to the server-side 8 Curl--data @filename https:// Github.api.com/authorizations
Note: By default, if there are special characters in the data passed through post, you first need to pass the special character escape to the server side, if the value contains spaces, you need to convert the space to%20 first, such as:
1 curl-d "value%201" http://hostname.com
In the new version of Curl, a new option--data-urlencode is provided, and the parameters provided by this option automatically escape special characters.
1 Curl--data-urlencode "value 1" http://hostname.com
In addition to using the Get and post protocols, you can specify additional protocols through the-X option, such as:
1 curl-i-X DELETE HTTPS://API.GITHUB.CIM
Uploading files
1 Curl--form "[email protected]" Http://hostname/resource
Http://curl.haxx.se/docs/httpscripting.html
Excerpt from: http://www.cnblogs.com/gbyukg/p/3326825.html
"NET pick" curl Common commands