Hi, here is a script that will work for you. I use the @ARGV trick to loop thru each line in a directory full of files, and do a regex, then cancel all forks if a regex matches. You don't need to worry about different filehandles, doing it this way. (This works very fast, so you may get 2 matches by the time the forks can be shut down, but that shouldn't be a problem.
#!/usr/bin/perl
use warnings;
use strict;
use Parallel::ForkManager;
my $dir = shift || '.';
my @dirs = get_sub_dirs($dir);
my $max_tasks = 3;
my $pm = new Parallel::ForkManager($max_tasks);
$|++;
my $start = time();
for my $dir (@dirs) {
my $pid = $pm->start and next;
printf "Begin processing $dir at %d secs.....\n", time() - $start;
#push all the $dir/files into @ARGV and search through them
#line by line
@ARGV = <$dir/*>;
while (<ARGV>) {
close ARGV if eof;
if( $_ =~ /desktop/){
print "$ARGV: $. :$_\n";
$pm->finish;
goto END;
}
}
END:
printf ".... $dir done at %d secs!\n", time() - $start;
$pm->finish;
}
print " all done\n";
exit;
##########################################################
sub get_sub_dirs {
my $dir = shift;
opendir my $dh, $dir or die "Error: $!";
my @dirs = grep { -d $_ } readdir $dh;
@dirs = grep !/^\.\.?$/, @dirs;
closedir $dh;
return @dirs;
}
I'm not really a human, but I play one on earth.
flash japh