Thread Returncode aus der Pipe
(7 answers)
Opened by roli at 2009-12-16 15:39 Code: (dl
)
1 $? The status returned by the last pipe close, backtick ("``") in deinem fall klappt aber schon das open nicht, und das wiederum musst du mit "or die $!" abfragen: Code (perl): (dl
)
open my $pipe, "$cmd |" or die "Could not open $cmd: $!"; nach dem close auf die pipe fragst du dann $? ab. Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |