15 lines
164 B
Plaintext
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"
|