11 lines
227 B
TypeScript
Executable File
11 lines
227 B
TypeScript
Executable File
#!/usr/bin/env -S deno run --allow-env --allow-run
|
|
|
|
// or: cal -A 1 -B 1
|
|
const command = new Deno.Command("cal", {
|
|
args: ["-3"],
|
|
env: {},
|
|
stdin: "inherit",
|
|
stdout: "inherit",
|
|
});
|
|
const _child = command.spawn();
|