babashka/test-resources/bb-edn/user.clj
Michiel Borkent afed99ad1b wip [skip ci]
2021-03-17 13:05:04 +01:00

8 lines
207 B
Clojure

(ns user
(:require [babashka.process :as p]
[clojure.string :as str]))
(defn bash [& args]
(-> (p/process ["bash" "-c" (str/join " " args)]
{:inherit true})
p/check))