curl : client url的意思,用来请求web服务器。功能非常强大,命令行参数多达几十种。使用得熟练的话,完全可以取代postman这一类的图形界面工具。
不带有任何参数时,curl就是发出get请求:
curl http://www.baidu.com
-b参数用来向服务器发送Cookie
curl -b ‘foo=bar‘ http://www.baidu.com
上面命令会生成一个标头Cookie: foo=bar
原文:https://www.cnblogs.com/i-hard-working/p/11788734.html