Reply-to: "Perl Mongers of Omaha, Nebraska USA" <omaha-pm@pm.org>
Thread-index: Acd61aQXbnne/X8iR4iMZXd2IWKWJQ==
Thread-topic: find "000" in position 70-72 in text files
Another Perl quicky...
j
my @files = glob "*dly";
foreach my $file (@files) {
open (IN, $file);
while (<IN>) {
if (/^.{69}000/) {
print "$file: $_";
}
}
close IN;
}