📝 Update jq cheatsheet with usage examples

This commit is contained in:
2026-04-13 23:35:30 +08:00
parent 562858ccdc
commit 4297de62ae

View File

@@ -8,3 +8,14 @@ repo: https://github.com/jqlang/jq
description: Command-line JSON processor description: Command-line JSON processor
``` ```
## Usage
```shell
echo '{"name": "hatter"}' | jq .
```
```shell
echo '{"name": "hatter"}' | jq .name -r
```