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;