> I need to call/execute another perl file from my backup.pl perl script
by giving some argument.
> Can anybody please tell me how to do that?

my result = system (perl other-script.pl <arg>)
or
my result = `perl other-script.pl <arg>`  #using back ticks`

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to