Help for this page
[egartz@localhost fullment_programs]$ ulimit -f 10 [egartz@localhost fullment_programs]$ ./lots_of_print.pl File size limit exceeded [egartz@localhost fullment_programs]$
#!/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"; }