From 8e71b8e3522b9b1af4d869a0854223eb5c300b63 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 21 Oct 2019 18:11:51 -0700 Subject: [PATCH] fix jq example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 88f3d542..7504994c 100755 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ JSON CLI output utility This allows further command line processing of output with tools like `jq` simply by piping commands: ``` -$ ls -l /usr/bin | jc --ls | jq .[] | jq 'select(.bytes > 50000000)' +$ ls -l /usr/bin | jc --ls | jq '.[] | select(.bytes > 50000000)' { "filename": "emacs", "flags": "-r-xr-xr-x",