![]() |
|< 1 2 3 4 5 6 >| | ![]() |
52 entries, 6 pages |
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
foreach my $logFile(@logfilelist) {
open my $in , '<', $logFile or die $!;
print "Umstrukturieren $logFile \n";
while( my $line = <$in> ){
if( $line =~ /^Context/ ){
$line=~ s/^Context:\s+//;
@array = split /\s/, $line;
$line = join "|", @array;
if( $array[2] ne '' ){
$counter++;
if($logFile =~ /^dn/) {
print $frontend_context "$counter|$line\n";
}
elsif($logFile =~ /^logfile/ || /^inoutput/) {
print $backend_context "$counter|$line\n";
}
}
}
}
elsif($logFile =~ /^logfile/ || $logFile =~ /^inoutput/) {
elsif($logFile =~ /^(?:logfile|inoutput)/) {
1 2 3 4
my @diff = grep{ my $i = $_; !grep{$_ eq $i}@logfilelist2 }@logfilelist1; print "in logfilelist1, aber nicht in liste2:\n\n"; print $_,"\n" for @diff
my @perf1 =glob("logfile1/.log");
my @perf1 =glob("logfile1/.log");
my @perf1 = glob 'logfile/.log*'
![]() |
|< 1 2 3 4 5 6 >| | ![]() |
52 entries, 6 pages |