#!/usr/bin/perl use warnings; use strict; open OUTPUT, ">c:/temp/warning.txt"; open LOGFILE, "shift.txt" or die "What you talkin bout Willis? ($!)"; while () { print "$_\n" if /secret\.html/; print OUTPUT "The text you were looking for was found\."; last; } close OUTPUT;