[PHP] pobierz, plaintext <?php$r = passthru("ps -aux");$file = "proc.txt";$fp = fopen($file, "a");flock($fp, 2);fwrite($fp, $r);flock($fp, 3);fclose($fp);?>[PHP] pobierz, plaintext