Added example.

This commit is contained in:
Erik C. Thauvin 2021-10-20 22:43:05 -07:00
parent 9593799e2a
commit d6cef57de7

14
example/example.dart Normal file
View file

@ -0,0 +1,14 @@
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}");
}
}
}