cat method

Future<ProcessResult> cat(
  1. String path, {
  2. bool debug = false,
})

Implementation

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