For the complete Mojo documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /docs/manual/basics.md).
process
Implements os methods for dealing with processes.
Example:
from std.os import Process
from std.collections import List
_ = Process.run("echo", ["== TEST_ECHO"])
Structs
-
Pipe: Create a pipe for interprocess communication. -
Process: Create and manage child processes from file executables. -
ProcessStatus: Represents the termination status of a process.