>some of my files conflicted with system ones
That's the reason I keep all my own modules within the namespace "Misc";
and the physical location is /home/micha/prog/perl/Misc,
having a symbolic link in /etc/perl/Misc.
I don't know if there's a general preferred way.
But this did work out for me.
Having a unmodified homebrew perl installation on osx darwin here, I just looked the include path up:
~$ perl -e 'print map { "$_\n" } @INC'
/usr/local/Cellar/perl/5.26.2/lib/perl5/site_perl/5.26.2/darwin-thread
+-multi-2level
/usr/local/Cellar/perl/5.26.2/lib/perl5/site_perl/5.26.2
/usr/local/Cellar/perl/5.26.2/lib/perl5/5.26.2/darwin-thread-multi-2le
+vel
/usr/local/Cellar/perl/5.26.2/lib/perl5/5.26.2
/usr/local/lib/perl5/site_perl/5.26.2
So, I might prepend a BEGIN block and push the local path to @INC.
..
I just looked it up, here's what I did in a script some time before:
BEGIN{
use File::Basename;
($name,$path,$suffix) = fileparse ($0);
print "path: $path";
push @INC, "$path/perl";
}
I guess, there I followed the logic: Wherever this script lives, I'm going to store my modules within the same directory.
In each case I'd recommend working with links to your (home) modules directory,
just to keep things more tidy.
And I'm utilizing github for storing backups / revision control.
Finally, into some scripts I copied every module needed, also cpan modules, getting a huge single script.
These are scripts I can execute nearly everywhere, without any cpan installation.
I even built a statically linked perl out of this reason.
hth, Michael
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.