Medic.Cmd (Medic v2.0.1)

View Source

Helpers for running commands.

Summary

Functions

Run a command via System.cmd, returning trimmed output and status code

Run a command via System.cmd, returning trimmed output, or raising if the command fails.

Run a command, writing the description, command, and output to stdout. Returns result of System.cmd.

Run a command, writing the description, command, and output to stdout. Returns :ok or raises if the command fails.

Functions

exec(command, args, opts \\ [])

@spec exec(binary(), [binary()], [binary()]) :: {binary(), non_neg_integer()}

Run a command via System.cmd, returning trimmed output and status code

exec!(command, args, opts \\ [])

@spec exec!(binary(), [binary()], [binary()]) :: binary()

Run a command via System.cmd, returning trimmed output, or raising if the command fails.

run(description, command, args, opts \\ [])

@spec run(binary(), binary(), [binary()], list()) :: {binary(), integer()}

Run a command, writing the description, command, and output to stdout. Returns result of System.cmd.

run!(description, command, args, opts \\ [])

@spec run!(binary(), binary(), [binary()], list()) :: :ok

Run a command, writing the description, command, and output to stdout. Returns :ok or raises if the command fails.