Help for this page

Select Code to Download


  1. or download this
    $ cat file_gen.pl
    #!/usr/bin/env perl
    ...
        print "$t: line: $_\n";
        sleep 1;
    }
    
  2. or download this
    #!/usr/bin/env perl
    use strict;
    ...
        print join("", @lines),"\n";
        sleep 5;
    }