dankogai #5545(2008/01/29 05:35 GMT) [ Perl ] Rating1/1=1.00
詳しくは
perldoc perlipc
にて。
Dan the Perl Monger
1 2 3 4 5 6 7 8
my @cmd = qw/ps ux/; my $pid = open my $rfh, '-|' or exec @cmd # pid = 0 or die "can't exec:$!" # $! knows how it failed; while ( my $line = <$rfh> ) { print "[$pid] $line"; } warn "exit status:$?";
Rating1/1=1.00-0+
[ reply ]
dankogai
#5545()
[
Perl
]
Rating1/1=1.00
詳しくは
perldoc perlipc
にて。
Dan the Perl Monger
Rating1/1=1.00-0+
[ reply ]