shell()
Execute the given string as a shell command, and return stdout concatenated with stderr.
shell("ls", ["-l", "/"])
public fun shell(command: String, args: List<String>): Result<String, String> { __BUILT_IN_IMPLEMENTATION }