首页 > 代码库 > curl命令+jq抓取json数据

curl命令+jq抓取json数据

jq使用文档:http://stedolan.github.io/jq/manual/

举例:

{"name": "han","age": "20"}

 

curl -s -d ‘user=aa&pass=cc‘ http://www.example.com | jq ‘.name‘ >> file.txt

cat file.txt

han

curl命令+jq抓取json数据