Hello all,
Can anyone please let me know how to set the INC path permanently. If i
want to add a new path i know how to do it from a perl script using the use
lib module. But if i want to permanently add a path to @INC how should i do
it?
Thxs,
Mohammed Gazal.
_
define an environment variable:
$ export PERLLIB=
regards
Peter
Am Dienstag, 03.06.03 um 03:01 Uhr schrieb Mohammed Gazal:
Hello all,
Can anyone please let me know how to set the INC path permanently. If
i
want to add a new path i know how to do it from a perl script using
the use
lib module
There is no way more permanent than "use lib". You can set $PERL5LIB
for a given user in the environment files sourced by a user's shell, or
you can modify the PERL5LIB built into a particular interpreter as a
compile-time option. Neither insures that the execution of the script
uses the same pat