simplify doc

This commit is contained in:
Michiel Borkent 2019-08-09 17:40:36 +02:00
parent be91fdabde
commit 6c2e2d6426

View file

@ -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]