You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
239 B
Perl

$Pattern = "perl";
$File = "myfile";
open (FILE,$File) || die "Can't open $File, $!\n";
while(<FILE>) {
if (/$Pattern/o) {
print "$File: $_";
last;
}
}
close(FILE);