如果有多个grep,怎么写到上面的语句中?例如cat /dev/urandom |od -x|tr -d ' '|head -n 1
在网上找了下,发现用以下的方法也行,使用spawn
和exec
有什么区别呢?
const exec = require('child_process').exec;
exec('cat /dev/urandom |od -x|tr -d ' '|head -n 1', (error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
return;
}
console.log(`stdout: ${stdout}`);
console.log(`stderr: ${stderr}`);
});
如果不封装的话,你需要监听多个事件,举例说
cat /dev/urandom |od -x|tr -d ' '|head -n 1
也可以在spwan创建子进程的时候制定一下pipe管道,比如这样
实际环境下,还要处理stderr那边的信息
你给的例子没有grep呀?
https://nodejs.org/api/child_...
多个options 以数组的形式作为 第二个参数传递: ls -lh /usr
你给的例子
cat /dev/urandom |od -x|tr -d ' '|head -n 1
就照着你截图的那个管道分开做:
然后管道的话看你截图那个例子怎么写的咯,就是回调里执行下一个指令的样子