Garden 🌻

shell()

Execute the given string as a shell command, and return stdout concatenated with stderr.

Example
shell("ls", ["-l", "/"])
Source Code
public fun shell(command: String, args: List<String>): Result<String, String> {
  __BUILT_IN_IMPLEMENTATION
}