#!/usr/bin/perl open (PSTEST, "/bin/ps -eaf|"); $i=1; while (<PSTEST>){ print "Line # ".$i." ".$_; $i++; } close PSTEST; [download]
In reply to Re^3: Perl Bug? by marto in thread Perl Bug? by Knom