lang/js/ ChildProcesses


const { exec, execFile } = require('child-process')
exec("ls /bin",(error,stdout,stderr) => console.log({error,stdout,stderr}))
execFile("ls",[arg1,arg2],(error,stdout,stderr) => console.log({error,stdout,stderr}))