Files
ts-scripts/single-scripts/cal.ts
2025-01-20 01:04:04 +08:00

10 lines
206 B
TypeScript
Executable File

#!/usr/bin/env -S deno run --allow-env --allow-run
const command = new Deno.Command("cal", {
args: ["-3"],
env: {},
stdin: "inherit",
stdout: "inherit",
});
const _child = command.spawn();