一、get请求
curl "http://www.baidu.com"
curl -i "http://www.baidu.com"
curl -l "http://www.baidu.com" 只显示头部信息
curl -v "http://www.baidu.com" 显示get请求全过程解析
wget "http://www.baidu.com"也可以
二、post请求
curl -d "param1=value1¶m2=value2" "http://www.baidu.com"
Linux 下curl模拟Http 的get or post请求
原文:http://www.cnblogs.com/wxmdevelop/p/5052368.html