% perl -e 'printf "%d %s\n", $i++, $_ for @INC'
0 /usr/local/lib/perl5/5.8.0/OpenBSD.i386-openbsd
1 /usr/local/lib/perl5/5.8.0
2 /usr/local/lib/perl5/site_perl/5.8.0/OpenBSD.i386-openbsd
3 /usr/local/lib/perl5/site_perl/5.8.0
4 /usr/local/lib/perl5/site_perl/5.6.0
5 /usr/local/lib/perl5/site_perl/5.00554
6 /usr/local/lib/perl5/site_perl/5.005
7 /usr/local/lib/perl5/site_perl
8 .
The first two directories, elements 0 and 1 of
@INC, are respectively the standard
architecture-dependent and architecture-independent directories,
which all standard libraries, modules, and pragmas will go into. You
have two of them because some modules contain information or
formatting that makes sense only on that particular architecture. For
example, the Config module contains information that cannot be shared
across several architectures, so it goes in the
0th array element. Modules that include
compiled C components, such as Socket.so, are
also placed there. Most modules, however, go in the
platform-independent directory in the 1st
element.
The next pair, elements 2 and 3, fulfills roles analogous to elements
and 1, but on a site-specific basis. Suppose you have a module that
didn't come with Perl, such as one from CPAN or that you wrote
yourself. When you or (more likely) your system administrator
installs this module, its components go into one of the site-specific
directories. You are encouraged to use these for any modules that
your entire site should be able to access conveniently.
In this particular configuration, elements 4 -7 are there so that
Perl can find any site-specific modules installed under a previous
release of Perl. Such directories can be automatically added to
@INC when you configure, build, and install a
newer Perl release, making it easier to upgrade.
The last standard component, "." (your current
working directory), is useful only when developing and testing your
software, not when deploying it. If your modules are in the same
directory that you last chdir ed to, you're fine.
If you're anywhere else, it doesn't work.
So sometimes none of the @INC directories work
out. Maybe you have your own personal modules. Perhaps your project
group has particular modules that are relevant only to that project.
In these cases, you need to augment the standard
@INC search.
This technique should not be used in the #!
(pound-bang) line. First, it's not much fun to modify each program.
More importantly, some older operating systems have bugs related to
how long that line can be, typically 32 characters, including the
#! part. That means if you have a very long path,
such as #!/opt/languages/free/extrabits/perl, you
may get the mysterious "Command
not found" error. Perl does its
best to rescan the line manually, but this is still too dicey to rely
on.
To demonstrate the first case, suppose you have a program called
/wherever/spectre/myprog that needs to look in
/wherever/spectre for its modules, but you don't
want that path hardcoded.
use FindBin;
use lib $FindBin::Bin;
The second case would apply if your program lives in
/wherever/spectre/bin/myprog but needs to look
at /wherever/spectre/lib for its modules.
use FindBin qw($Bin);
use lib "$Bin/../lib";