in reply to How do I store and manipulate the output from another process?

Another method would be to use qx(). qx() is a genralized form of using backticks - and is does interpolation as well.
$output=qx(tar -tf);
  • Comment on Re: How do I store and manipulate the output from another process?
  • Download Code