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

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();