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

FIFO
 2015-07-16 09:21
#181596 #181596
User since
2005-06-01
469 Artikel
BenutzerIn

user image
Das ist in dieser Form nicht so schlau, besser Programm und Argumente als Liste übergeben, sonst ist man bzgl. cmdline-parsing der jeweiligen Shell ausgeliefert:

Code (perl): (dl )
1
2
# Return-Wert beachten, NICHT system( $command, @args ) or die $!;
system( $command, @args ) == 0 or die $?


Editiert von FIFO: Für return 0 korrigiert, thx@Raubtier
Last edited: 2015-07-16 11:05:35 +0200 (CEST)
Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"

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