1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 22:55:37 +02:00

jq: remove example to bring it under the 8 example limit (#5057)

This commit is contained in:
Starbeamrainbowlabs 2021-01-01 21:30:53 +00:00 committed by GitHub
parent 550b259371
commit a1b636f844
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,10 +19,6 @@
`jq '.[0]' {{file.json}}`
- Output the value of a given key of the first element in a JSON text from `stdin`:
`cat {{file.json}} | jq '.[0].{{key_name}}'`
- Output the value of a given key of each element in a JSON text from `stdin`:
`cat {{file.json}} | jq 'map(.{{key_name}})'`