in reply to Re: check whether a array element is equal to a string.
in thread check whether a array element is equal to a string.

Thank you it works now, I have one more question, coupld you tell me whether this is the correct method to call a perl script from another script?
if($size_EG12>0){ system "java StopMessageFlows"; foreach(@EG12){ do 'deploy.pl'; } }

Replies are listed 'Best First'.
Re^3: check whether a array element is equal to a string.
by PeterPeiGuo (Hermit) on Jan 10, 2011 at 15:07 UTC

    Your script already calls a java program, so simply call other perl scripts in the same way.

    Peter (Guo) Pei