/exexec

Execute and control OS processes from Elixir.

Primary LanguageElixirApache License 2.0Apache-2.0

Build Status Coverage Status Inline docs Hex.pm package version Hex.pm package license

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

  1. Add exexec to your list of dependencies in mix.exs:

    def deps do [{:exexec, "~> 0.1"}] end

  2. Ensure exexec and erlexec are started before your application:

    def application do [applications: [:erlexec, :exexec]] end