in reply to Re: Perl Bug?in thread Perl Bug?
How? Those will not let him capture output, will they?
Makeshifts last the longest.
#!/usr/bin/perl open (PSTEST, "/bin/ps -eaf|"); $i=1; while (<PSTEST>){ print "Line # ".$i." ".$_; $i++; } close PSTEST; [download]