sal/examples/_archive/process_long.rhai
2025-05-08 09:54:20 +03: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"