Future<bool> checkUid() => Task(() => _io.run(r'echo $EUID')) .map((final res) => res.stdout.toString().trim() == '0') .run();