13 lines
427 B
TypeScript
Executable File
13 lines
427 B
TypeScript
Executable File
#!/usr/bin/env runts -- --runtime-bun
|
|
|
|
import {spawn} from "node:child_process";
|
|
|
|
const _child = spawn("cal", ["-3"], {
|
|
shell: true,
|
|
// stdio reference: https://nodejs.org/api/child_process.html#optionsstdio
|
|
stdio: ["inherit", "inherit", "inherit"],
|
|
});
|
|
|
|
// @SCRIPT-SIGNATURE-V1: yk-r1.ES256.20260123T010042+08:00.MEUCIQD5tXRb9i5PnOf3c22J
|
|
// /xe8L3Hquz2AwwKMq4oiCCL8MQIgGyextuCVasGLXrL3fw29p30QxCMlBKC7ZW9MoiffdEQ=
|