Thread Find::File aber keine versteckten (5 answers)
Opened by tsy at 2008-07-21 15:54

moritz
 2008-07-22 14:35
#112441 #112441
User since
2007-05-11
923 Artikel
HausmeisterIn
[Homepage]
user image
Code: (dl )
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.

View full thread Find::File aber keine versteckten