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:08:08 +00:00
|
|
|
(prn :args args)
|
|
|
|
|
(prn :cmd *command-line-args*)
|
2021-03-17 12:05:04 +00:00
|
|
|
(-> (p/process ["bash" "-c" (str/join " " args)]
|
|
|
|
|
{:inherit true})
|
|
|
|
|
p/check))
|