in reply to call another perl script
Like
#!/usr/bin/perl # i'm the first script require "secondscript.pl"; #do something here # e.g. create the input for the second script $output = &call_second_script_routine($input); # voila!
You will need some rewriting, but why not?
-- tune
|
|---|