You can use 'exec' this way const { exec } = require("child_process"); exec("ls -la", (error, stdout, stderr) => { if (error) { console.log(`error: ...
確定! 回上一頁