refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / jq / README.md
index 092328939c6691c00bc0651e4111a36ed507b3f1..af802462e3fc71f7ef3acda162e93c7459ceee62 100644 (file)
@@ -3,10 +3,16 @@ title: jq
 homepage: https://stedolan.github.io/jq/
 tagline: |
   jq is a lightweight and flexible command-line JSON processor.
-description: |
-  `jq` is like `sed` for JSON data - you can use it to slice and filter and map and transform structured data with the same ease that `sed`, `awk`, `grep` and friends let you play with text.
 ---
 
+To update or switch versions, run `webi jq@stable` (or `@v1.6`, `@beta`, etc).
+
+## Cheat Sheet
+
+> `jq` is like `sed` for JSON data - you can use it to slice and filter and map
+> and transform structured data with the same ease that `sed`, `awk`, `grep` and
+> friends let you play with text.
+
 All jq selectors begin with `.` - don't forget that!
 
 Be sure to checkout the
@@ -34,7 +40,7 @@ echo '{ "name": "foo" }' | jq -r '.name'
 ```
 
 ```txt
-"foo"
+foo
 ```
 
 ### How to select a whole object