import { Effects } from "../types"; export function sh(shellCommand: string) { return { command: "sh", args: ["-c", shellCommand], } satisfies Parameters[0]; }