Re: Best practice for executing system commands?

2015-01-24 Thread Uri Guttman
On 01/24/2015 09:13 AM, Mike wrote: Which is generally considered the best practice way of executing system commands from within a Perl program? Should I use backticks or qx//, system(), or exec()? Or is there no "best way" and it's just a matter of what you want to return? even though thos

Re: Best practice for executing system commands?

2015-01-24 Thread Shlomi Fish
Hi Mike, On Sat, 24 Jan 2015 08:13:38 -0600 Mike wrote: > Which is generally considered the best practice way of executing system > commands from within a Perl program? > > Should I use backticks or qx//, system(), or exec()? > > Or is there no "best way" and it's just a matter of what you wa

Best practice for executing system commands?

2015-01-24 Thread Mike
Which is generally considered the best practice way of executing system commands from within a Perl program? Should I use backticks or qx//, system(), or exec()? Or is there no "best way" and it's just a matter of what you want to return? -- To unsubscribe, e-mail: beginners-unsubscr...@perl.o