2017年2月
Node.js の child_process でパイプ、リダイレクトなどを使う
{shell: true} を使う。
1 2 3 4 5 6 7 8 |
const childProcess = require('child_process'); const cmd = childProcess.spawn('ls -l | grep js', [], {shell: true}); cmd.stdout.on('data', (data) => { console.log(data.toString()); }); |
公式サイトによると、このオプションを付けると、Unix環境では sh -c <コマンド>, Window […]