8.103 libPermits adding additional directories to Perl's default search path at compile time. The directories are added at the front of the search path. adds the directories specified inuse lib list ;
list
to
@INC
.
For each directory
$dir
in
Normally, you should only
add
directories to deletes the first instance of each named directory fromno lib list
@INC
. To
delete all instances of all the specified names from
@INC
, specify
:ALL
as the first parameter of
list
.
As with adding directories, @INC = @lib::ORIG_INC; Copyright © 2001 O'Reilly & Associates. All rights reserved. |
|