// The default config
executor="dummy.sh"

commands {
  // An alternative config
  // that switches us to use dummy2 executor
  other_config {
    executor="dummy2.sh"
  }

  // This config will be invoked for the ls command
  ls {
    executor="dummy3.sh"
  }
}
