Berkeley CSUA MOTD:Entry 21702
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/04 [General] UID:1000 Activity:popular
4/4     

2001/7/3 [Computer/SW/Languages/Perl] UID:21702 Activity:high
7/2     How do I change the path perl checks when I do a "require"?
        \_ Ocaml >> perl.
        \_ use lib "/my/module/directory";
           See "perldoc perlfaq8" for details.
        \_ This probably still works:
           BEGIN { push (@INC,"/my/dir/with/modules") ; }
           \_ It does; see "perldoc lib" for the differences.
              \_ lib is a perl module (.pm) right? I generally
                 avoid those since they are not compatible with
                 perl4 (yes people still use this).
           \_ If it's a script, I find it easier to just change the #! line to:
              #!/path/to/perl -I/my/module/directory