X-Git-Url: https://njoseph.me/gitweb/babashka-scripts.git/blobdiff_plain/67d5a15a20df70f416cf78efb2137344f239da2f..30bd2f34f3d22bdd4314d4bd3384fa3d6dbd5ca5:/lib.clj diff --git a/lib.clj b/lib.clj index 1f88070..16c9059 100644 --- a/lib.clj +++ b/lib.clj @@ -4,7 +4,7 @@ (:require [babashka.process :as p] [org.httpkit.client :as http] [clojure.java.io :as io] - [clojure.string :refer [replace-first]]) + [clojure.string :refer [replace-first split-lines]]) (:import [java.nio.file Files FileSystems CopyOption StandardCopyOption])) (defn run-cmd @@ -33,3 +33,15 @@ (defn download-binary [url destination] (io/copy (:body @(http/get url)) (io/file destination))) + +(defn unixify + "Make a function `f` behave like a UNIX shell command." + [f] + (when (= *file* (System/getProperty "babashka.file")) + (let [content (if (> (.available System/in) 0) + (slurp *in*) + (first *command-line-args*))] + (->> content + (split-lines) + (filter seq) + (run! f)))))