tail function

Stream<String> tail(
  1. String filename,
  2. int lines,
  3. bool follow
)

Called when the tail command is to be started

Implementation

// ignore: avoid_positional_boolean_parameters
Stream<String> tail(String filename, int lines, bool follow) =>
    tallTail.tail(filename, lines: lines, follow: follow);