babashka/test-resources/bb.edn

10 lines
539 B
Clojure
Raw Normal View History

2021-03-16 21:01:30 +00:00
{:paths ["script"]
:tasks {:bash {:babashka/invoke {:fn cool-script/bash}}
:eval-plus {:babashka/args [-e (apply + (map (fn [i]
(Integer/parseInt i))
*command-line-args*))]}
2021-03-16 17:05:36 +00:00
:tree {:babashka/args [:clojure -Stree]}
2021-03-16 21:01:30 +00:00
:all {:babashka/args [:do :eval-plus 1 2 3
:__ :tree
:__ :bash "ls | wc -l"]}}}