matrix-procmonitor/test-process.php
2024-07-08 21:22:43 -04:00

11 lines
150 B
PHP

<?php
while(1){
echo("Test Process Running\n");
if(rand(0, 9) == 0){
echo("Test Process Found Something!\n");
}
sleep(5);
}