calling a shell script from perl

Hi all,

Not sure if this is the right forum to post query regarding perl script.

I have a perl script which internally calls a shell script. My problem is that the shell script should be passed command line arguments.

I call a shell script from perl using:

system("sript.sh");

How do I pass command line arguments to the shell script?

Please advise.

regards,

Guru

system("sript.sh ARG1 ARG2 ... ARGN-1 ARGN ");

It should be just like a shell command.

Or, for instance,

system("ls", "-l");

qx(echo "Hai");