in reply to How do I recursively process every file in a given directory?

Oops, excuse me
i made a booboo, the regexp is wrong
        if ($_ =~ /^\..?.?$/) { next; }
is wrong and should be replaced by
     if ($_ =~ /^\..?.?$/) { next; }
hehe

don't i look silly now ;)
Anonymous abZurdist of a Monk

Originally posted as a Categorized Answer.

  • Comment on Re: How do I recursively process every file in a given directory?