1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$ find
.
./.bar
./.bar/abc
./.bar/baz
./file-find.pl
./foo
./foo/blubb
./def
$ cat file-find.pl
#!/usr/bin/perl
use strict;
use warnings;
local $\ = "\n";
use File::Find;
find(sub {return if m/^\./; print }, '.');
__END__
$ perl file-find.pl
file-find.pl
def
abc
baz
foo
blubb
abc wird gefunden, obwohl es in einem versteckten Verzeichnis liegt.