in reply to Executing a perl script from a perl script???

Though you probably don't want to do it, there are many ways to call one script from another. You would execute it the same way you would any other command, using system, exec, `` (backquotes), open(H,"cmd args |"), etc...
see this for system, you can go from there. hope this helps
  • Comment on Re: Executing a perl script from a perl script???