babashka.process- Shell out in Clojure with simplicity and ease.$- Convenience macro aroundprocess*defaults*- Dynamic var containing overridable default optionscheck- Takes a process, waits until is finished and throws if exit code is non-zero.destroy- Takes process or mapdestroy-tree- Same asdestroybut also destroys all descendantsexec- Replaces the current process image with the process image specifiedpb- Returns a process builder (as record).pipeline- Returns the processes for one pipe created with -> or createsprocess- Takes a command (vector of strings or objects that will be turnedsh- Convenience function similar toclojure.java.shell/shthat setsshell- Convenience function aroundprocessthat was originally inbabashka.tasks.start- Takes a process builder, calls start and returns a process (as record).tokenize- Tokenize string to list of individual space separated arguments.
Shell out in Clojure with simplicity and ease.
If you are not yet familiar with the API, start reading the
docstrings for process and shell.
($ & args)Macro.
Convenience macro around process. Takes command as varargs. Options can
be passed via metadata on the form or as a first map arg. Supports
interpolation via ~
source
Dynamic var containing overridable default options. Use
alter-var-root to change permanently or binding to change temporarily.
source
(check proc)Takes a process, waits until is finished and throws if exit code is non-zero.
source
(destroy proc)Takes process or map
with :proc (java.lang.ProcessBuilder). Destroys the process and
returns the input arg.
source
(destroy-tree proc)Same as destroy but also destroys all descendants. JDK9+
only. Falls back to destroy on older JVM versions.
source
(exec cmd)
(exec cmd {:keys [escape env extra-env], :or {escape default-escape}, :as opts})Replaces the current process image with the process image specified
by the given path invoked with the given args. Works only in GraalVM
native images. Override the first argument using :args0.
source
(pb cmd)
(pb cmd opts)
(pb prev cmd opts)Returns a process builder (as record).
source
(pipeline proc)
(pipeline pb & pbs)Returns the processes for one pipe created with -> or creates pipeline from multiple process builders.
- When passing a process, returns a vector of processes of a pipeline created with
->orpipeline. - When passing two or more process builders created with
pb: creates a pipeline as a vector of processes (JDK9+ only).
Also see Pipelines.
(process cmd)
(process cmd opts)
(process prev cmd opts)Takes a command (vector of strings or objects that will be turned into strings) and optionally a map of options.
Returns: a record with:
:proc: an instance ofjava.lang.Process:in,:err,:out: the process's streams. To obtain a string from:outor:erryou will typically useslurpor use the:stringoption (see below). Slurping those streams will block the current thread until the process is finished.:cmd: the command that was passed to create the process.:prev: previous process record in case of a pipeline.
The returned record can be passed to deref. Doing so will cause the current
thread to block until the process is finished and will populate :exit with
the exit code.
Supported options:
:in,:out,:err: objects compatible withclojure.java.io/copythat will be copied to or from the process's corresponding stream. May be set to:inheritfor redirecting to the parent process's corresponding stream. Optional:in-enc,:out-encand:err-encvalues will be passed along toclojure.java.io/copy. The:outand:erroptions support:stringfor writing to a string output. You will need toderefthe process before accessing the string via the process's:out. For writing output to a file, you can set:outand:errto ajava.io.Fileobject, or a keyword::write+ an additional:out-file/:err-file+ file to write to the file.:append+ an additional:out-file/:err-file+ file to append to the file.
:inherit: if true, sets:in,:outand:errto:inherit.:dir: working directory.:env,:extra-env: a map of environment variables. See Add environment.:escape: function that will applied to each stringified argument. On Windows this defaults to prepending a backslash before a double quote. On other operating systems it defaults toidentity.:pre-start-fn: a one-argument function that, if present, gets called with a map of process info just before the process is started. Can be useful for debugging or reporting. Any return value from the function is discarded. Map contents::cmd- a vector of the tokens of the command to be executed (e.g.["ls" "foo"])
:shutdown: shutdown hook, defaults tonil. Takes process map. Typically used withdestroyordestroy-treeto ensure long running processes are cleaned up on shutdown.
source
(sh cmd)
(sh cmd opts)
(sh prev cmd opts)Convenience function similar to clojure.java.shell/sh that sets
:out and :err to :string by default and blocks. Similar to
cjs/sh it does not check the exit code (this can be done with
check).
source
(shell cmd & args)Convenience function around process that was originally in babashka.tasks.
Defaults to inheriting I/O: input is read and output is printed
while the process runs. Throws on non-zero exit codes. Kills all
subprocesses on shutdown. Optional options map can be passed as the
first argument, followed by multiple command line arguments. The
first command line argument is automatically tokenized.
Differences with process:
- Does not work with threading for piping output from another process.
- It does not take a vector of strings, but varargs strings.
- Option map goes first, not last.
Examples:
(shell "ls -la")(shell {:out "/tmp/log.txt"} "git commit -m" "WIP")
Also see the shell entry in the babashka book here.
source
(start pb)Takes a process builder, calls start and returns a process (as record).
source
(tokenize s)Tokenize string to list of individual space separated arguments.
If argument contains space you can wrap it with ' or ".
source