in reply to Re: difference bteween using back quote and sytem command in perl programming
in thread difference bteween using back quote and sytem command in perl programming

Yes, the handy thing with qx// is you can save the output to an array of lines @L = qx(cksum *);

print pack "H*", "6772656574696e67730a"
  • Comment on Re^2: difference bteween using back quote and sytem command in perl programming