in reply to Using System command

That's because system does not return the STDOUT output of the command but the exit status, see "perldoc -f system". Having two separate constructs for the same job would be redundant.

If the backticks do what you need, why not just use them?

Edit: LOL, guess the number of possible wordings was quite limited ...

Replies are listed 'Best First'.
Re^2: Using System command
by perlatbest (Initiate) on Apr 20, 2012 at 00:39 UTC
    Thanks for clarifying on this.