hi,
i call a perl script passing some parameters to the script one of which being a another script name which also needs parameters.
but when i pass the parameters to script which is to be called from the main script, the main script shows me some warnings.
ex:
perl a.pl -a 1 -b b.pl -a 2 -b 2 -c 1
where the second a and b parameters are for the script b.pl and not a.pl, where as c is parameter to a.pl.
Is there a way so that i can tell perl to take all this as single parameter.
thanks for any help in advance