1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/common/bb.md
Vitor Henrique 1ba7fb9460
pages*: add missing mnemonics (#12151)
* pages*: add missing mnemonics

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-19 19:43:42 +05:30

486 B

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}}

  • Bind [i]nput to a sequence of lines from stdin:

printf "first\nsecond" | 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*))"