D | test-child-process-double-pipe.js | 36 let grep, sed, echo; variable 40 sed = spawn('sed', ['--binary', 's/o/O/']); 46 sed = spawn('sed', ['s/o/O/']); 86 sed.on('exit', mustCall(() => { 94 if (!sed.stdin.write(data)) { 101 sed.stdin.on('drain', (data) => { 108 sed.stdin.end(); 115 sed.stdout.on('data', mustCallAtLeast((data) => { 120 sed.stdout.on('end', mustCall((code) => {
|