exec method

Future<ProcessResult> exec(
  1. List<String> command, {
  2. bool debug = false,
})

Implementation

Future<io.ProcessResult> exec(List<String> command, {bool debug = false}) async {
  return await _bridge.executor.execute([..._connection.arguments, 'shell', ...command], debug: debug);
}