From 58c58da3fe922ff4889accbb40ed1b212e3edd50 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Thu, 25 Jan 2024 09:30:06 -0800 Subject: [PATCH] docs: use `--eval-all` with `brew info` Signed-off-by: Patrick Linnane --- docs/Querying-Brew.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Querying-Brew.md b/docs/Querying-Brew.md index 32ef43516d..2b3c5dcf52 100644 --- a/docs/Querying-Brew.md +++ b/docs/Querying-Brew.md @@ -33,7 +33,7 @@ brew info --json=v1 tig | jq . To show full JSON information about all installed formulae: ```sh -brew info --json=v1 --all | jq "map(select(.installed != []))" +brew info --json=v1 --eval-all | jq "map(select(.installed != []))" ``` You'll note that processing all formulae can be slow; it's quicker to let `brew` do this: