From 6c2e2d642615b79c9d4ebfef9b207ab1cbf699d6 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Fri, 9 Aug 2019 17:40:36 +0200 Subject: [PATCH] simplify doc --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index b95d10af..30320fdb 100644 --- a/README.md +++ b/README.md @@ -48,15 +48,9 @@ Examples: $ ls | bb --raw '*in*' ["LICENSE" "README.md" "bb" "doc" "pom.xml" "project.clj" "reflection.json" "resources" "script" "src" "target" "test"] -$ ls | bb --raw '*in*' | bb '(count *in*)' +$ ls | bb --raw '(count *in*)' 11 -$ ls | bb --raw '*in*' | bb '(count *in*)' -11 - -$ echo 1 | bb '(inc *in*)' -2 - $ echo '[1 1 1 1 2]' | bb '(vec (dedupe *in*))' [1 2]