> Any ideas?
Use a system call in perl:
system('/my/perl/script some args') or die blahdy-blah;
backticks:
print `perl /my/perl/script some args`;
modularise the script:
you can do that bit :)
Or write/read/process the args to/from another file and make the script
pull them in if they exist
Ryan