silverbullet/syscall/plugos-syscall/shell.ts

9 lines
188 B
TypeScript
Raw Normal View History

2022-10-04 22:33:29 +08:00
import { syscall } from "./syscall.ts";
2022-04-01 23:07:08 +08:00
2022-10-08 22:29:43 +08:00
export function run(
2022-04-01 23:07:08 +08:00
cmd: string,
2022-10-08 22:29:43 +08:00
args: string[],
2022-04-01 23:07:08 +08:00
): Promise<{ stdout: string; stderr: string }> {
return syscall("shell.run", cmd, args);
}