In perl we usually do a recursive directory traversal using File::Find and we often use a code similar to below to find certain files based on a pattern.
find(\&filter, $somepath);
sub filter {
my $srcfile = $_;
if -f $srcfile && $srcfile =~ /<CERTAIN PATTERN>/ {
<Some Processing which requires premature exit>
}
}
This is generally quite flexible, but there are certain times when we want to prematurely exit the find. Is there a defined way in perl to do this?