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