Files
XP-System/node_modules/pstree.remy/tests/fixtures/index.js
T
2020-11-25 09:10:06 -08:00

9 lines
173 B
JavaScript

const spawn = require('child_process').spawn;
const sub = spawn(
'sh',
['-c', 'node -e "setInterval(() => console.log(`running`), 200)"'],
{
stdio: 'pipe',
}
);