mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
try {
|
|
await Deno.spawn("ls");
|
|
} catch (e) {
|
|
console.log(e);
|
|
}
|
|
|
|
const { status } = await Deno.spawn("curl", {
|
|
args: ["--help"],
|
|
stdout: "null",
|
|
stderr: "inherit",
|
|
});
|
|
console.log(status.success);
|