in reply to RE: Re: Quoting arguments to system
in thread Quoting arguments to system

To call that program from Perl, you'd say:
system "perl5", "old-crusty-program.pl", "-farg1 arg2 arg3";
Because that's what the shell is effectively doing.

-- Randal L. Schwartz, Perl hacker