Tagged Questions

4
votes
4answers
1k views

Why can't I remove this empty directory in Perl?

I am converting a linux script from http://www.perlmonks.org/index.pl?node_id=217166 specifically this: #!/usr/bin/perl -w use strict; use Getopt::Std; use File::Find; @ARGV > 0 and getopts('a:', ...
1
vote
2answers
67 views

Premature Exit from Perl File::Find

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 { ...