$fd = fopen($argv[1], "rb"); while($line = fgets($fd)) { if(rand(0, 100) == 1) { echo $line; } } fclose($fd);