You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ProcessRunnerResult result = await processRunner.runProcess(['ls']);
802
+
803
+
print('stdout: ${result.stdout}');
804
+
print('stderr: ${result.stderr}');
805
+
}
806
+
```
807
+
808
+
Among the three possible alternatives, the `shell.dart` library was chosen because it is the most stable library on Linux for executing terminal commands.
809
+
810
+
</details>
811
+
812
+
-`dart:ffi` -> Library for memory allocation, used to allocate the thread, **No comment required**
0 commit comments