in reply to Re: Re: parsing arguments
in thread parsing arguments
This is why if you look at system(...) or exec(...), you see that they take a list as their argument (or, again, whatever parallel construct in any other language). You also see that if you only pass one item in that list, and it contains characters which the shell will know how to handle, that perl actually invokes the shell to handle converting that string into the @ARGV of the sub-process.
|
|---|