type Runner interface {
// Run takes a command name and some arguments and will apply it to the current environment. Run(command string, args ...string) ([]byte, error)
}
Runner is an entity which can execute commands with whatever backing medium behind it.