my $target = 0; my $match; while (<>) { $target = $. + 2 if /^LUN 40\s*$/; $match = $_ if $. == $target; } print($match) if defined($match);