Thread Returncode bei Aufruf mit IPC::Open3
(2 answers)
Opened by roli at 2008-05-06 20:26
foo.pl:
start_foo.pl: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 #!/usr/bin/perl use strict; use warnings; use IPC::Open3; my $input; my $pid = open3( $input, \*OUT, \*ERROR, "./foo.pl" ); waitpid( $pid, 0 ); my $rc = $? >> 8; print "Rc=$rc\n"; Der Clou liegt bei dem waitpid und dem $? >> 8 (siehe dazu perlvar) Ausgabe: Code: (dl
)
1 $ perl start_foo.pl OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |