I\'m using Mac OS. I want to execute a system command using (use \'[clojure.java.shell :only [sh]]), like in How to execute system commands?. I have read https://cl
(use \'[clojure.java.shell :only [sh]])
On MacOS or Linux this works:
user=> (require '[clojure.java.shell :as sh]) nil user=> (sh/sh "ls" "-la") ...