使用 Node 執行 Shell 指令

做法

新增 index.js 檔。

1
2
3
4
5
const { execSync } = require('child_process');

execSync('echo "Hello, World!"', {
stdio: 'inherit',
});

執行程式。

1
node index.js

輸出如下:

1
Hello, World!

參考資料