in reply to
using Open
Also, $info is a file handle, hence the strange output. You can work with the contents of the file like this:
chomp ( my @output = <$info> ); print "$_\n" for @output;
[download]
Comment on
Re: using Open
Download
Code
In Section
Seekers of Perl Wisdom