On Sat, 28 Aug 1999, Jordan K. Hubbard wrote:
> A user who may well have been smoking crack at the time but has
> nonetheless found an "interesting" bug sent me this procedure:
>
> Use this small perl script to create a file with 3000 spaces in it:
>
> #!/usr/bin/perl
> open FOO, ">foo.img" or
A user who may well have been smoking crack at the time but has
nonetheless found an "interesting" bug sent me this procedure:
Use this small perl script to create a file with 3000 spaces in it:
#!/usr/bin/perl
open FOO, ">foo.img" or die "can't open foo; $!\n";
for ($i=0;$i<3000;$i++){print FOO