Future<List<String>> syssplit(final String cmd) => Task(() => _io.run(cmd)) .map((final res) => res.stdout.toString().split('\n')) .run();