2022-11-18 01:52:38 +00:00
|
|
|
# bb
|
|
|
|
|
|
|
|
> Native Clojure interpreter for scripting.
|
|
|
|
> More information: <https://book.babashka.org/#usage>.
|
|
|
|
|
|
|
|
- [e]valuate an expression:
|
|
|
|
|
|
|
|
`bb -e "(+ 1 2 3)"`
|
|
|
|
|
|
|
|
- Evaluate a script [f]ile:
|
|
|
|
|
|
|
|
`bb -f {{path/to/script.clj}}`
|
|
|
|
|
2023-07-02 14:12:01 +01:00
|
|
|
- Bind input to a sequence of lines from `stdin`:
|
2022-11-18 01:52:38 +00:00
|
|
|
|
|
|
|
`printf "first\nsecond" | bb -i "(map clojure.string/capitalize *input*)"`
|
|
|
|
|
2023-07-02 14:12:01 +01:00
|
|
|
- Bind input to a sequence of EDN(Extensible Data Notation) values from `stdin`:
|
2022-11-18 01:52:38 +00:00
|
|
|
|
|
|
|
`echo "{:key 'val}" | bb -I "(:key (first *input*))"`
|