vito / bass

a low fidelity scripting language for project infrastructure
https://bass-lang.org
MIT License
378 stars 13 forks source link

add `(take-all)` for reading all values from a pipe source #248

Closed vito closed 2 years ago

vito commented 2 years ago

usage:

(take-all (read (mkfile ./foo "a\nb\nc") :unix-table))
; => [["a"] ["b"] ["c"]]