5 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9 10 11
chdir($DIRECTORY); opendir(DIR,"$DIRECTORY"); while( my $datei = readdir(DIR) ) { open(FILE, "$datei") or die; my @status=funktionsaufruf(); close(FILE); if($status[0] =~ m/matching/) { #...mache was } } closedir(DIR);
1 2 3 4 5
... if(($status[0] and $status[0] =~ /^match$/) && ($status[1] and $status[1] == 5) ) { ... } ...
5 Einträge, 1 Seite |