mirror of
https://github.com/Erreur32/cheat.git
synced 2025-01-03 03:22:15 +01:00
jq is a command line json processor
Here is the awesome manual: http://stedolan.github.io/jq/manual/
This commit is contained in:
parent
417f47f037
commit
434802341e
1 changed files with 13 additions and 0 deletions
13
cheat/cheatsheets/jq
Normal file
13
cheat/cheatsheets/jq
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Pretty print the json
|
||||
jq "." < filename.json
|
||||
|
||||
# Access the value at key "foo"
|
||||
jq '.foo'
|
||||
|
||||
# Access first list item
|
||||
jq '.[0]'
|
||||
|
||||
# Slice & Dice
|
||||
jq '.[2:4]'
|
||||
jq '.[:3]'
|
||||
jq '.[-2:]'
|
Loading…
Reference in a new issue