Exexec
Execute and control OS processes from Elixir.
An idiomatic Elixir wrapper for Serge Aleynikov’s excellent erlexec, Exexec, provides an Elixir interface as well as some nice Elixir-y goodies on top.
Installation
Add exexec to your list of dependencies in
mix.exs
:def deps do [{:exexec, "~> 1.0.0"}] end
Ensure exexec and erlexec are started before your application:
def application do [applications: [:erlexec, :exexec]] end