feat: add cal.ts
This commit is contained in:
9
single-scripts/cal.ts
Executable file
9
single-scripts/cal.ts
Executable 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();
|
||||
Reference in New Issue
Block a user