jq is a command line json processor

Here is the awesome manual: http://stedolan.github.io/jq/manual/
This commit is contained in:
Shadab Zafar 2015-05-20 00:17:55 +05:30
parent 417f47f037
commit 434802341e
1 changed files with 13 additions and 0 deletions

13
cheat/cheatsheets/jq Normal file
View 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:]'