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:', ...
2
votes
4answers
215 views
GNU find: Search in current directory first
how can I tell find to look in the current folder first and then continue search in subfolders? I have the following:
$ find . -iname '.note'
folder/1/.note
folder/2/.note
folder/3/.note
folder/.note
...
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 {
...