feat: add cal.ts

This commit is contained in:
2025-01-20 01:04:04 +08:00
parent 33b38ed778
commit b1582bdca2
2 changed files with 18 additions and 0 deletions

9
single-scripts/cal.ts Executable file
View File

@@ -0,0 +1,9 @@
#!/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();