in reply to
Using output from system() call
Use backticks. For instance,
my $date = `date`; print $date;
[download]
HTH
Comment on
Re: Using output from system() call
Download
Code
In Section
Seekers of Perl Wisdom