Leser: 1
|< 1 2 >| | 11 Einträge, 2 Seiten |
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
26
27
28
29
30
31
my $dir = 'c:\Ordner;
opendir(DH, $dir) or die "Oeffnen des Ordners fehlgeschlagen";
@dateien = readdir(DH);
closedir(DH);
foreach my $datei (@dateien)
{
open (Inhalt,"<","$datei");
my $Status = 0;
foreach (<Inhalt>)
{
if ($_ !~ /logging/ )
{
}
else
{
$Status = 1;
}
}
if ($Status == 0)
{
print $datei."\n";
}
close (Inhalt);
}
1
2
3
4
5
6
foreach my $datei (@dateien)
{
open (Inhalt,"<","$datei");
print $datei."\n" if grep {/logging/} <Inhalt>;
close (Inhalt);
}
1
2
3
4
5
6
foreach my $datei (@dateien)
{
open (Inhalt,"< $datei");
print "$datei\n" unless grep { /logging/ } <Inhalt>;
close (Inhalt);
}
my $dir = 'c:\Ordner;
open (Inhalt,"<","$datei");
1
2
3
4
5
6
7
8
9
10
11
foreach (<Inhalt>) {
if ($_ !~ /logging/ ) {
}
else {
$Status = 1;
}
}
if ($Status == 0) {
print $datei."\n";
}
1
2
open (Inhalt,"< $datei") or die $!;
print "$datei\n" unless join('', <Inhalt>) =~ m~logging~s;
1
2
3
open(CONTENT, "/usr/bin/grep -R $string_was_ich_suche $path_wo_ich_suche|");
my @content = <CONTENT>;
close(CONTENT);
-R
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use strict;
use warnings;
opendir(DIR, 'c:\Ordner');
map {
print $_ . "\n" unless /logging/;
} (readdir(DIR));
closedir(DIR);
|< 1 2 >| | 11 Einträge, 2 Seiten |