Help for this page

Select Code to Download


  1. or download this
    my $previous = "";
    while (<$handle>) {
        print $previous if /BEEP/;
        $previous = $_;
    }