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 |