welcome earlier, fix lint warnings and real errors
[webi-installers/.git] / jq / README.md
index 092328939c6691c00bc0651e4111a36ed507b3f1..adaa8551d509c52a80efa550c3deb4d27db76dab 100644 (file)
@@ -3,10 +3,22 @@ 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.
 ---
 
+## Updating `jq`
+
+```bash
+webi jq@stable
+```
+
+Use the `@beta` tag for pre-releases.
+
+## 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 +46,7 @@ echo '{ "name": "foo" }' | jq -r '.name'
 ```
 
 ```txt
-"foo"
+foo
 ```
 
 ### How to select a whole object