LinuxCommandLibrary

bb

simple process viewer in rust

TLDR

[e]valuate an expression

$ bb -e "(+ 1 2 3)"
copy


Evaluate a script [f]ile
$ bb -f [path/to/script.clj]
copy


Bind input to a sequence of lines from stdin
$ printf "first\nsecond" | bb -i "(map clojure.string/capitalize *input*)"
copy


Bind input to a sequence of EDN(Extensible Data Notation) values from stdin
$ echo "{:key 'val}" | bb -I "(:key (first *input*))"
copy

Copied to clipboard