Thread Perl-Programm stoppt plötzlich ohne eine Fehlermeldung die Ausführung (10 answers)
Opened by tibowski at 2015-07-15 17:24

GwenDragon
 2015-07-15 18:02
#181590 #181590
User since
2005-01-17
14747 Artikel
Admin1
[Homepage]
user image
Dann prüfe bitte mal die von system zurück gegebenen Werte und die in $?.
Schau: http://perldoc.perl.org/functions/system.html

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
my $ret = system("cp $datei $zielverzeichnis");
if ($ret != 0 {
    if ($? == -1) {
        print "execute failed with $!\n";
    }
    elsif ($? & 127) {
        printf "child died with signal %d, %s coredump\n",
            ($? & 127), ($? & 128) ? 'with' : 'without';
    }
    else {
        printf "child exited with value %d\n", $? >> 8;
    }
}

View full thread Perl-Programm stoppt plötzlich ohne eine Fehlermeldung die Ausführung