sal/rhaiexamples/process_long.rhai
2025-04-04 21:21:50 +02:00

15 lines
164 B
Plaintext

let x=0;
while x < 100 {
run(`
find /
ls /
`);
// sleep(100);
x=x+1;
}
"Process Management Test Success - All tests passed"