Browse Source

jq: add 'output to string' example (#2916)

Bruno Bigras 5 years ago
parent
commit
c24e2d610c
1 changed files with 4 additions and 0 deletions
  1. 4 0
      pages/common/jq.md

+ 4 - 0
pages/common/jq.md

@@ -29,3 +29,7 @@
 - Combine multiple filters:
 
 `cat {{file.json}} | jq 'unique | sort | reverse'`
+
+- Output the value of a given key to a string (and disable JSON output):
+
+`cat {{file.json}} | jq --raw-output '"some text: \(.{{key_name}})"'`