silverbullet/packages/plugos-syscall/shell.ts

9 lines
193 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
export async function run(
cmd: string,
args: string[]
): Promise<{ stdout: string; stderr: string }> {
return syscall("shell.run", cmd, args);
}