curl命令
- curl命令常用来做http请求。c表示client,url就是URL
- curl命令在Linux和mac系统下自带,window下建议下载git for windows
- 下面只是一些常用的参数,更多可以查阅帮助。
$ curl https://www.baidu.com
$ curl https://www.baidu.com -s
$ curl https://www.baidu.com -s -o 1.txt
$ curl https://www.baidu.com -s -o 2.txt
$ curl localhost:88 -s -H "a:b"
$ curl localhost:88 -s -H "a:b" -X POST
$ curl localhost:88 -s -H "a:b" -X POST -d "age=22"
$ curl localhost:88?name=kk -s -H "a:b" -X POST -d "age=22"
$ curl localhost:88 -s -H "Content-Type:application/json" -X POST -d "{\"age\":22}"
$ curl -h