17 lines
543 B
TypeScript
Executable File
17 lines
543 B
TypeScript
Executable File
#!/usr/bin/env runts -- --allow-import --allow-env --allow-run
|
|
|
|
import {execCommandShell} from "https://script.hatter.ink/@39/deno-commons-mod.ts";
|
|
|
|
// or: cal -A 1 -B 1
|
|
await execCommandShell("cal", [-3]);
|
|
// const command = new Deno.Command("cal", {
|
|
// args: ["-3"],
|
|
// env: {},
|
|
// stdin: "inherit",
|
|
// stdout: "inherit",
|
|
// });
|
|
// const _child = command.spawn();
|
|
|
|
// @SCRIPT-SIGNATURE-V1: yk-r1.ES256.20260211T222859+08:00.MEUCIQDoiYXzcy6tb7PkZvfX
|
|
// mX/V/yHagXha7VmavMQynzUa4gIgPVl9LeWqPZJPVrlcxQrdYxj1LRmBRzc3n1vEMWJI0eE=
|