Hi all,
I need to execute remote perl script(script_to_call.pl) from my another perl script also passing @ARGV to script_to_call.pl . I tried with below but it not parse @ARGV:
do { local @ARGV;
@ARGV = ("$OldTime","$NewTime","$WLSP/CDSServer11.log");
eval { system("ssh -o stricthostkeychecking=no $WLS './script_to_call.
+pl'"); };
};