open FILE, '<', $file or die "..."; while () { print if m/interesting/; handle(FILE, 'that') if m/that/; } close FILE;