On Tuesday, February 3, 2004, at 05:23 PM, [EMAIL PROTECTED] wrote:


I've written the following to sweep a folder and set creator/type for pdf
files (coming off a Linux server). This works from MacPerl, but I really need
to run it from OSX Perl. How do I get Perl to use MacPerl.pm, which @INC can't
locate? ( #!/usr/bin/perl use MacPerl; ... ).

If you install MacPerl.pm in the "obvious" way, then it should be found. Otherwise, if you install it in an alternate location, then you can do:


 use lib qw(/path/to/where/you/installed/it);
 use MacPerl;

-Ken



Reply via email to