Mix v1.5.1 mix cmd View Source

Executes the given command.

Useful in umbrella applications to execute a command on each child app:

mix cmd echo pwd

You can limit which apps the cmd runs in by passing the app names before the cmd using —app:

mix cmd --app app1 --app app2 echo pwd

Aborts when a command exits with a non-zero status.

Link to this section Summary

Functions

A task needs to implement run which receives a list of command line args

Link to this section Functions

A task needs to implement run which receives a list of command line args.

Callback implementation for Mix.Task.run/1.