使用 Node 執行 Shell 指令 Memo's Blog 2022-11-28 Node JavaScript, Node, Programming, Shell 做法新增 index.js 檔。 12345const { execSync } = require('child_process');execSync('echo "Hello, World!"', { stdio: 'inherit',}); 執行程式。 1node index.js 輸出如下: 1Hello, World! 參考資料 Node.js - documentation