actor_system/examples/scripts/_archive/process_long.rhai
Timur Gordon 89a3abee63 wip
2025-08-08 09:54: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"