lines property

Stream<String> lines

Returns a stream of lines this prints to stdout.

Like stdout.lines, but emits a ScriptException if the executable returns a non-zero exit code.

Implementation

Stream<String> get lines =>
    StreamGroup.merge([stdout.lines, Stream.fromFuture(done).withoutData()]);