dcat library Null safety

A library to concatenate files to standard output or file.

Classes

CatResult
Holds the cat result exitCode and error messages.

Constants

exitFailure → const int
Failure exit code.
1
exitSuccess → const int
Success exit code.
0

Functions

cat(List<String> paths, IOSink output, {Stream<List<int>>? input, bool numberNonBlank = false, bool showEnds = false, bool showLineNumbers = false, bool showNonPrinting = false, bool showTabs = false, bool squeezeBlank = false}) Future<CatResult>
Concatenates files in paths to the standard output or a file. [...]