[Node] 在 Node 中執行 CMD 指令
keywords: child_process
, exec
, cmd
- Child Processes @ Node.js
- Example Code: exec.js @ Github
// 載入 exec 方法
const util = require('util');
const exec = util.promisify(require('child_process').exec);
main();
async function main() {
// 在 Terminal 中執行 'touch hello.js'
await exec('touch hello.js');
}