initial commit

This commit is contained in:
John Doe 2024-07-08 21:22:43 -04:00
commit 869abd1075
4 changed files with 86 additions and 0 deletions

11
test-process.php Normal file
View file

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