in reply to Re: Re: Executing independet commands in PERL
in thread Executing independent commands in PERL

Almost. qx`...` would be the same as backticks. qx/.../ would have a slash for a delimiter, and hence require a different backslashing strategy. And qx'...' would have single-quote for a delimiter and not support variable interpolation or backslash escaping.

-- Randal L. Schwartz, Perl hacker

  • Comment on Re: Re: Re: Executing independet commands in PERL