Thread Returncode aus der Pipe (7 answers)
Opened by roli at 2009-12-16 15:39

pq
 2009-12-17 12:26
#129470 #129470
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
Code: (dl )
1
2
3
       $?      The status returned by the last pipe close, backtick ("``")
command, successful call to wait() or waitpid(), or from the
system() operator.

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: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Returncode aus der Pipe