diff --git a/script-meta-v2.json b/script-meta-v2.json index 53b8198..8e80f4d 100644 --- a/script-meta-v2.json +++ b/script-meta-v2.json @@ -7,6 +7,15 @@ "publish_time": 1737272626138, "update_time": 1737272626138 }, + "cal.ts": { + "script_name": "cal.ts", + "script_length": 206, + "script_sha256": "537bea6f49e4041d153fc80f79cf9abc0742f367f063f46bf9350ea33616ce6a", + "script_full_url": "https://git.hatter.ink/hatter/ts-scripts/raw/branch/main/single-scripts/cal.ts", + "single_script_file": true, + "publish_time": 1737306227061, + "update_time": 1737306227061 + }, "helloworld.ts": { "script_name": "helloworld.ts", "script_length": 69, diff --git a/single-scripts/cal.ts b/single-scripts/cal.ts new file mode 100755 index 0000000..a058dfd --- /dev/null +++ b/single-scripts/cal.ts @@ -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();