in reply to Re: Finding modules
in thread Finding modules
Of course there is no guarantee that your modules are installed in /usr/ so you may want to find the directories you are searching using the following code if you are using b10m's solution:
use strict; use warnings; foreach my $path (@INC) { print "There are modules in: $path\n"; }
Note that you need read access to these directories, so if your box is properly locked down this may mean you need root access.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Finding modules
by b10m (Vicar) on Jan 27, 2004 at 18:37 UTC | |
by Vautrin (Hermit) on Jan 27, 2004 at 19:08 UTC |