Sodamhan.com

TL;DR

bb

Native Clojure interpreter for scripting. More information: https://book.babashka.org/#usage.

  • evaluate an expression:

bb -e "(+ 1 2 3)"

  • Evaluate a script file:

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*))"

This document was created using the contents of the tldr project.