Files
Reboot-Launcher/common/lib/src/extension/process.dart
Alessandro Autiero 2bf084d120 9.1.3
2024-06-04 20:31:06 +02:00

8 lines
321 B
Dart

import 'dart:convert';
import 'dart:io';
extension ProcessExtension on Process {
Stream<String> get stdOutput => this.stdout.expand((event) => utf8.decode(event, allowMalformed: true).split("\n"));
Stream<String> get stdError => this.stderr.expand((event) => utf8.decode(event, allowMalformed: true).split("\n"));
}