Files
cheatsheet-tldr/tldr/bb
2025-03-29 00:18:23 +00:00

27 lines
600 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# bb
> Native Clojure interpreter for scripting.
> More information: <https://book.babashka.org/#usage>.
- Evaluate an expression:
`bb {{[-e|--eval]}} "(+ 1 2 3)"`
- Evaluate a script file:
`bb {{[-f|--file]}} {{path/to/script.clj}}`
- Bind [i]nput to a sequence of lines from `stdin`:
`printf "first
second" | bb -i "(map clojure.string/capitalize *input*)"`
- Bind [I]nput to a sequence of EDN (Extensible Data Notation) values from `stdin`:
`echo "{:key 'val}" | bb -I "(:key (first *input*))"`