【linux命令】Linux系统中curl命令常用参数以及使用方法

内容摘要
2,查看网站或网页地址http状态,常用

curl  -I url地址
[[email protected] public_html]# curl -I 21yunwei.com
HTTP/1.1 301 Moved Permanently
Server: nginx/1.2
文章正文

2,查看网站或网页地址http状态,常用
curl  -I url地址

[[email protected] public_html]# curl  -I 21yunwei.com
HTTP/1.1 301 Moved Permanently
Server: nginx/1.2.9
Date: Sun, 08 May 2016 18:56:14 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
X-Powered-By: PHP/5.3.29
Location: /d/file/p/20221029/

3. curl使用代理
linux curl使用http代理抓取页面:

curl -x 1.2.3.4:80 http://iframe.ip138.com/ic.asp|iconv -fgb2312
curl -x 1.2.3.4:80 -U aiezu:password /d/file/p/20221029/
curl --socks4 1.2.3.4:443 http://iframe.ip138.com/ic.asp|iconv -fgb2312
curl --socks5 1.2.3.4:443 http://iframe.ip138.com/ic.asp|iconv -fgb2312

4.curl处理cookies
接收cookies:

curl -c /tmp/cookies /d/file/p/20221029/ #cookies保存到/tmp/cookies文件
curl -b "key1=val1;key2=val2;" /d/file/p/20221029/ #发送cookies文本
curl -b /tmp/cookies /d/file/p/20221029/ #从文件中读取cookies
5. curl发送数据:

linux curl get方式提交数据:

curl -G -d "name=value&name2=value2" /d/file/p/20221029/

linux curl post方式提交数据:

curl -d "name=value&name2=value2" /d/file/p/20221029/ #post数据
curl -d a=b&c=d&[email protected]/tmp/txt /d/file/p/20221029/  #post文件

6. http header处理:

设置http请求头信息:

curl -A "Mozilla/5.0 Firefox/21.0" /d/file/p/20221029/ #设置http请求头User-Agent
curl -e "http://pachong.org/" /d/file/p/20221029/ #设置http请求头Referer
curl -H "Connection:keep-alive 
 User-Agent: Mozilla/5.0" /d/file/p/20221029/
  设置http响应头处理:
curl -I /d/file/p/20221029/www.21yunwei.com #仅仅返回header
curl -D /tmp/header /d/file/p/20221029/www.21yunwei.com #将http header保存到/tmp/header文件

7. curl认证:

curl -u 21yunwei:password /d/file/p/20221029/www.21yunwei.com #用户名密码认证
curl -E mycert.pem /d/file/p/20221029/www.baidu.com #采用证书认证
curl -# /d/file/p/20221029/ #以“#”号输出进度条
curl -o /tmp/hehe  /d/file/p/20221029/ #保存http响应到/tmp/hehe  
代码注释
[!--zhushi--]

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!