http://www.perlmonks.org?node_id=995494


in reply to Re: Call perl script from within another perl script
in thread Call perl script from within another perl script

hi all, I need to execute perl script(script_to_call.pl) on my remote location can I do it in same way (with @ARGV)? This below one not parse @ARGV:
do { local @ARGV; @ARGV = ("$OldTime","$NewTime","$WLSP/CDSServer11.log"); eval { system("ssh -o stricthostkeychecking=no $WLS './script_to_c +all.pl'"); }; };

Replies are listed 'Best First'.
Re^3: Call perl script from within another perl script
by dHarry (Abbot) on Sep 25, 2012 at 11:33 UTC

    Instead of asking a question in a 4 year old thread, you should open a new thread. Your problem is also different to the problem addressed in this thread. See safely passing args through ssh for ideas.

      OK sorry for my bad. I will open a new thread. anyway thank you very much for your reply