1
0
silverbullet/plug-api/plugos-syscall/shell.ts
2022-10-14 15:11:33 +02:00

9 lines
188 B
TypeScript

import { syscall } from "./syscall.ts";
export function run(
cmd: string,
args: string[],
): Promise<{ stdout: string; stderr: string }> {
return syscall("shell.run", cmd, args);
}