一天一個命令之--curl
用途說明
curl命令是一個功能強大的網路工具,它能夠通過http、ftp等方式下載檔案,也能夠上傳檔案。其實curl遠不止前面所說的那些功能,大家可以通過man curl閱讀手冊頁獲取更多的資訊。類似的工具還有wget。
curl命令使用了libcurl庫來實現,libcurl庫常用在C程式中用來處理HTTP請求,curlpp是libcurl的一個C++封裝,這幾個東西可以用在抓取網頁、網路監控等方面的開發,而curl命令可以幫助來解決開發過程中遇到的問題。
常用引數
curl命令引數很多,這裡只列出我曾經用過、特別是在shell指令碼中用到過的那些。
-A:隨意指定自己這次訪問所宣稱的自己的瀏覽器資訊
-b/--cookie <name=string/file> cookie字串或檔案讀取位置,使用option來把上次的cookie資訊追加到http request裡面去。
-c/--cookie-jar <file> 操作結束後把cookie寫入到這個檔案中
-C/--continue-at <offset> 斷點續轉
-d/--data <data> HTTP POST方式傳送資料
-D/--dump-header <file> 把header資訊寫入到該檔案中
-F/--form <name=content> 模擬http表單提交資料
-v/--verbose 小寫的v引數,用於列印更多資訊,包括髮送的請求資訊,這在除錯指令碼是特別有用。
-m/--max-time <seconds> 指定處理的最大時長
-H/--header <header> 指定請求頭引數
-s/--slient 減少輸出的資訊,比如進度
--connect-timeout <seconds> 指定嘗試連線的最大時長
-x/--proxy <proxyhost[:port]> 指定代理伺服器地址和埠,埠預設為1080
-T/--upload-file <file> 指定上傳檔案路徑
-o/--output <file> 指定輸出檔名稱
--retry <num> 指定重試次數
-e/--referer <URL> 指定引用地址
-I/--head 僅返回頭部資訊,使用HEAD請求
-u/--user <user[:password]>設定伺服器的使用者和密碼
-O:按照伺服器上的檔名,自動存在本地
-r/--range <range>檢索來自HTTP/1.1或FTP伺服器位元組範圍
-T/--upload-file <file> 上傳檔案
使用示例
1,抓取頁面內容到一個檔案中
[[email protected] mytest]# curl -o home.html http://www.baidu.com --將百度首頁內容抓下到home.html中
[[email protected] mytest]#curl -o #2_#1.jpghttp://cgi2.tky.3web.ne.jp/~{A,B}/[001-201].JPG
由於A/B下的檔名都是001,002...,201,下載下來的檔案重名,這樣,自定義出來下載下來的檔名,就變成了這樣:原來: A/001.JPG —-> 下載後: 001-A.JPG 原來: B/001.JPG ---> 下載後: 001-B.JPG
2,用-O(大寫的),後面的url要具體到某個檔案,不然抓不下來。還可以用正則來抓取東西
[[email protected] mytest]# curl -O http://www.baidu.com/img/bdlogo.gif
執行結果如下:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1575 100 1575 0 0 14940 0 --:--:-- --:--:-- --:--:-- 1538k
會在當前執行目錄中生成一張bdlogo.gif的圖片。
[[email protected] mytest]# curl -O http://XXXXX/screen[1-10].JPG --下載screen1.jpg~screen10.jpg
3,模擬表單資訊,模擬登入,儲存cookie資訊
[[email protected] mytest]# curl -c ./cookie_c.txt -F log=aaaa -F pwd=******http://www.XXXX.com/wp-login.php
4,模擬表單資訊,模擬登入,儲存頭資訊
[[email protected] mytest]# curl -D ./cookie_D.txt -F log=aaaa -F pwd=******http://www.XXXX.com/wp-login.php
-c(小寫)產生的cookie和-D裡面的cookie是不一樣的。
5,使用cookie檔案
[[email protected] mytest]# curl -b ./cookie_c.txt http://www.XXXX.com/wp-admin
6,斷點續傳,-C(大寫)
[[email protected] mytest]# curl -C -O http://www.baidu.com/img/bdlogo.gif
7,傳送資料,最好用登入頁面測試,因為你傳值過去後,curl回抓資料,你可以看到你傳值有沒有成功
[[email protected] mytest]# curl -d log=aaaa http://www.XXXX.com/wp-login.php
8,顯示抓取錯誤,下面這個例子,很清楚的表明了。
[[email protected] mytest]# curl -fhttp://www.XXXX.com/asdf
curl: (22) The requested URL returned error: 404
[[email protected] mytest]# curlhttp://www.XXXX.com/asdf
<HTML><HEAD><TITLE>404,not found</TITLE>
9,偽造來源地址,有的網站會判斷,請求來源地址,防止盜鏈。
[[email protected] mytest]# curl -ehttp://localhosthttp://www.XXXX.com/wp-login.php
10,當我們經常用curl去搞人家東西的時候,人家會把你的IP給遮蔽掉的,這個時候,我們可以用代理
[[email protected] mytest]# curl -x 24.10.28.84:32779 -o home.htmlhttp://www.XXXX.com
11,比較大的東西,我們可以分段下載
[[email protected] mytest]# curl -r 0-100 -o img.part1http://www.XXXX.com/wp-content/uploads/2010/09/compare_varnish.jpg
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 101 100 101 0 0 105 0 --:--:-- --:--:-- --:--:-- 0
[[email protected] mytest]# curl -r 100-200 -o img.part2http://www.XXXX.com/wp-ontent/uploads/2010/09/compare_varnish.jpg
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 101 100 101 0 0 57 0 0:00:01 0:00:01 --:--:-- 0
[[email protected] mytest]# curl -r 200- -o img.part3http://www.XXXX.com/wp-content/uploads/2010/09/compare_varnish.jpg
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 104k 100 104k 0 0 52793 0 0:00:02 0:00:02 --:--:-- 88961
[[email protected] mytest]# ls |grep part | xargs du -sh
4.0K one.part1
112K three.part3
4.0K two.part2
用的時候,把他們cat一下就OK,cat img.part* >img.jpg
12,不會顯示下載進度資訊
[[email protected] mytest]# curl -s -o aaa.jpg http://www.baidu.com/img/bdlogo.gif
13,顯示下載進度條
[[email protected] mytest]# curl -0 http://www.baidu.com/img/bdlogo.gif (以http1.0協議請求)
####################################################################### 100.0%
14,通過ftp下載檔案
[[email protected] ~]$ curl -u使用者名稱:密碼 -Ohttp://www.XXXX.com/demo/curtain/bbstudy_files/style.css
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
101 1934 101 1934 0 0 3184 0 --:--:-- --:--:-- --:--:-- 7136
[[email protected] ~]$ curl -u 使用者名稱:密碼 -O http://www.XXXX.com/demo/curtain/bbstudy_files/style.css
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
101 1934 101 1934 0 0 3184 0 --:--:-- --:--:-- --:--:-- 7136
或者用下面的方式
[[email protected] ~]$ curl -O ftp://使用者名稱:密碼@ip:port/demo/curtain/bbstudy_files/style.css
[[email protected] ~]$ curl -O ftp://使用者名稱:密碼@ip:port/demo/curtain/bbstudy_files/style.css
15,通過ftp上傳
[[email protected] ~]$ curl -T test.sql ftp://使用者名稱:密碼@ip:port/demo/curtain/bbstudy_files/
[[email protected] ~]$ curl -T test.sql ftp://使用者名稱:密碼@ip:port/demo/curtain/bbstudy_files/
15,模擬瀏覽器頭
[[email protected] ~]$ curl -A "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" -x 123.45.67.89:1080 -o page.html -D cookie0001.txthttp://www.www.baidu.com
16,PUT、GET、POST
比如 curl -T localfile http://cgi2.tky.3web.ne.jp/~zz/abc.cgi,這時候,使用的協議是HTTP的PUT method
剛才說到PUT,自然想起來了其他幾種methos--GET和POST。
http提交一個表單,比較常用的是POST模式和GET模式
GET模式什麼option都不用,只需要把變數寫在url裡面就可以了
比如:
curl http://www.yahoo.com/login.cgi?user=nick&password=12345
而POST模式的option則是 -d
比如,curl -d "user=nick&password=12345" http://www.yahoo.com/login.cgi
就相當於向這個站點發出一次登陸申請~~~~~
到底該用GET模式還是POST模式,要看對面伺服器的程式設定。
一點需要注意的是,POST模式下的檔案上的檔案上傳,比如
<form method="POST" enctype="multipar/form-data" action="http://cgi2.tky.3web.ne.jp/~zz/up_file.cgi">
<input type=file name=upload>
<input type=submit name=nick value="go">
</form>
這樣一個HTTP表單,我們要用curl進行模擬,就該是這樣的語法:
curl -F [email protected] -F nick=go http://cgi2.tky.3web.ne.jp/~zz/up_file.cgi