This commit is contained in:
NikolajDanger
2023-01-13 14:30:29 +01:00
parent 4afc1d17df
commit 0844b209b1
287 changed files with 28523 additions and 0 deletions

View File

@ -0,0 +1,13 @@
const spawn = require('child_process').spawn;
function run() {
spawn(
'sh',
['-c', 'node -e "setInterval(() => console.log(`running`), 200)"'],
{
stdio: 'pipe',
}
);
}
var runCallCount = process.argv[2] || 1;
for (var i = 0; i < runCallCount; i++) run();