Re: where to put modules?

2004-07-09 Thread Christopher J. Bottaro
thank you everyone for the replies. one quick question though. is it customary to thank people for replies? or does it just cause more unecessary traffic on the newsgroup? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: where to put modules?

2004-07-08 Thread Hanson, Rob
To see what directories are in your Perl's path, you can run this at the command line. It should work on Win or *nix. perl -e "print join(qq[\n], @INC)" You might instead want to create your own "private" library by setting the PERL5LIB environment variable. It will add a directory to the begi

Re: where to put modules?

2004-07-08 Thread Wiggins d Anconia
> lets say i made a module called cjb::string. where would i put > cjb/string.pm? i'm using fedora core 1 and the default perl installation. > i've read in my book about modules and a little bit about them on > perldoc.com, but i couldn't find the answer to this. > > thanks. > Generally lower

Re: where to put modules?

2004-07-08 Thread Gunnar Hjalmarsson
Christopher J. Bottaro wrote: lets say i made a module called cjb::string. where would i put cjb/string.pm? i'm using fedora core 1 and the default perl installation. i've read in my book about modules and a little bit about them on perldoc.com, but i couldn't find the answer to this. Based on m