projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec022a5
)
Nur Dateien nach $locale->text() durchsuchen, deren Name mit .pl endet.
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 19 Jun 2007 08:09:09 +0000
(08:09 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 19 Jun 2007 08:09:09 +0000
(08:09 +0000)
locale/de/locales.pl
patch
|
blob
|
history
diff --git
a/locale/de/locales.pl
b/locale/de/locales.pl
index
f12001c
..
c568467
100755
(executable)
--- a/
locale/de/locales.pl
+++ b/
locale/de/locales.pl
@@
-25,7
+25,7
@@
foreach $item (@ARGV) {
}
opendir DIR, "$bindir" or die "$!";
-@progfiles = grep { /\.pl$/
;
!/(_|^\.)/ } readdir DIR;
+@progfiles = grep { /\.pl$/
&&
!/(_|^\.)/ } readdir DIR;
seekdir DIR, 0;
@customfiles = grep /_/, readdir DIR;
closedir DIR;