How to use `jq` in a shell pipeline?

前端 未结 2 1491
执念已碎
执念已碎 2020-12-22 17:42

I can\'t seem to get jq to behave \"normally\" in a shell pipeline. For example:

$ curl -s https://api.github.com/users/octocat/repos | jq | ca         


        
2条回答
  •  时光取名叫无心
    2020-12-22 18:33

    One use case I have found myself doing frequently as well is "How do I construct JSON data to supply into other shell commands, for example curl?" The way I do this is by using the --null-input/-n option:

    Don’t read any input at all! Instead, the filter is run once using null as the input. This is useful when using jq as a simple calculator or to construct JSON data from scratch.

    And an example passing it into curl:

    jq -n '{key: "value"}' | curl -d @- \
      --url 'https://some.url.com' \
      -H 'Content-Type: application/json' \
      -H 'Accept: application/json'
    

提交回复
热议问题