UNPKG

nestia

Version:
9 lines (7 loc) 200 B
import cp from "child_process"; export namespace CommandExecutor { export function run(str: string): void { console.log(`\n$ ${str}`); cp.execSync(str, { stdio: "inherit" }); } }