Help for this page

Select Code to Download


  1. or download this
    my @last_lines;
    while (<>) {
    ...
       push @last_lines,$_; 
       shift @last_lines if @last_lines > 4;
    }
    
  2. or download this
    my @last_lines;
    while (<>) {
    ...
          push @last_lines,$_;
       }
    }