- or download this
opendir(my $dh, '.')
or die("Unable to list directory: $!\n");
my @searchlist = readdir($dh);
- or download this
opendir(my $dh, '.')
or die("Unable to list directory: $!\n");
...
while (defined(my $file = readdir($dh))) {
...
}
- or download this
opendir(my $dh, '.')
or die("Unable to list directory: $!\n");
...
print("Match found\n") if $line =~ $pattern;
}
}
- or download this
opendir(my $dh, '.')
or die("Unable to list directory: $!\n");
...
chomp $line;
print("Match found\n") if $searchlist{$line};
}