Help for this page

Select Code to Download


  1. or download this
    perl -ne 'BEGIN { our $offset=-1 } $offset=2 if /^LUN 40\s*$/; print i
    +f !$offset--;' 743702.dat
    
  2. or download this
    use strict;
    
    ...
       $trigger = $. + 2 if /^LUN 40\s*$/;
       print if $. == $trigger;
    }