open(READTHIS, "< $readthis") or die "I can't open $readthis: $!\n"; while() { if (/\bcat\b/i) { print "yeppers!"; last; } } close(READTHIS);