2021-03-17 12:05:04 +00:00
|
|
|
(ns user
|
|
|
|
|
(:require [babashka.process :as p]
|
|
|
|
|
[clojure.string :as str]))
|
2021-03-17 11:25:26 +00:00
|
|
|
|
|
|
|
|
(defn bash [& args]
|
2021-03-17 13:40:21 +00:00
|
|
|
;; (prn :cmd *command-line-args*)
|
2021-03-17 12:05:04 +00:00
|
|
|
(-> (p/process ["bash" "-c" (str/join " " args)]
|
|
|
|
|
{:inherit true})
|
2021-03-17 20:31:35 +00:00
|
|
|
p/check)
|
|
|
|
|
nil)
|