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