RE: executing/calling another perl script

2006-04-09 Thread Irfan J Sayed
Thanks for all your help. Regards Irfan Sayed

Re: executing/calling another perl script

2006-04-09 Thread Anish Kumar K.
Hi Irfan Create a perl Module. The Module should start with and should be the second line after ther perl path package ; sub function_name { my ($pas1,$pass2,$array,$return)[EMAIL PROTECTED]; Do the Processing $_[3]= Send the Value..>Can be anything array, hash, or...$; } In the PERL

RE: executing/calling another perl script

2006-04-09 Thread Bobby Jafari
> 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 ) or my result = `perl other-script.pl ` #using back ticks` -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add