Help for this page

Select Code to Download


  1. or download this
    [egartz@localhost fullment_programs]$ ulimit -f 10
    [egartz@localhost fullment_programs]$ ./lots_of_print.pl
    File size limit exceeded
    [egartz@localhost fullment_programs]$
    
  2. or download this
    #!/usr/local/bin/perl -w
    use strict;
    ...
    for ( 1 .. 10000){
            print LARGE_FILE "dummy line...dummy line...dummy line...dummy
    + line...dummy line...dummy line...dummy line...\n" or print STDERR "i
    + caught the error!\n";
    }