http://www.perlmonks.org?node_id=608754


in reply to calling a perl file from a perl script

Hi hodashirzad,

As jonadab says, writing your own modules is very likely the way to go. Happily, with Perl, easy things tend to be easy, and writing modules (i.e., sticking your functions in .pm files) is a walk in the park. :)

I believe many folks create their own ~/perllib directory, and drop their modules (ex. MyModule.pm) in there. In your main script code, you tell perl how to find them by putting use lib '/home/you/perllib'; at the top (before the use MyModule; line).

Edit: To get started, have a look in the Tutorials section of this site, paying special attention to Simple Module Tutorial.

  • Comment on Re: calling a perl file from a perl script