kulls has asked for the wisdom of the Perl Monks concerning the following question:
my $result= `nmon -F file.out -s3 -c1`; open(FILE,"<file.out") || die $!; while(<FILE>) { print $_; } close(FILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: wait for the system command to complete process
by kcott (Archbishop) on Sep 13, 2012 at 05:29 UTC | |
|
Re: wait for the system command to complete process
by flexvault (Monsignor) on Sep 13, 2012 at 13:54 UTC |