dcat 1.0.0 copy "dcat: ^1.0.0" to clipboard
dcat: ^1.0.0 copied to clipboard

Concatenate file(s) to standard output or file

example/example.dart

import 'dart:io';

import 'package:dcat/dcat.dart';

// Usage: dart example.dart file...
Future<void> main(List<String> arguments) async {
  // Display the file(s) with line numbers to the standard output
  final result = await cat(arguments, stdout, showLineNumbers: true);
  if (result.isFailure) {
    for (final error in result.errors) {
      print("Error with '${error.path}': ${error.message}");
    }
  }
}
2
likes
115
pub points
44%
popularity

Publisher

verified publisherthauvin.net

Concatenate file(s) to standard output or file

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

args, indent

More

Packages that depend on dcat