Scott Marlowe wrote:
I used this very simple little php script to make thisfilename: mk55: #!/usr/bin/php -q <?php for ($i=0;$i<262144;$i++){ print chr(85); } ?>
Or, using standard *nix tools (Note: 0x55 = ascii U): dd bs=1k count=256 if=/dev/zero | tr '\000' U > full_of_0x55 Cheers, Steve -- Sent via pgsql-admin mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-admin
