http://www.perlmonks.org?node_id=1034650


in reply to Re^3: perl unable to locate my module
in thread perl unable to locate my module

Also, require '/home/charrison/bin/IPC.pm'; succeeds, which indicates to me it probably isn't related to permissions....

Replies are listed 'Best First'.
Re^5: perl unable to locate my module
by LanX (Saint) on May 22, 2013 at 00:39 UTC
    > which indicates to me it probably isn't related to permissions....

    It's possible to create very pathological situations with permissions.

    If I were you I'd try mkdir new dirs and copy IPC.pm there (and another tst.pm with just "1") and try to set INC accordingly.

    Maybe you can isolate the problem.

    BTW: manually perl -I/home/charrison/bin -MIPC -e'1' fails, too?

    HTH

    Cheers Rolf

    ( addicted to the Perl Programming Language)

      it is very important to quote the '1' because your shell might interpolate 1 into 11 :P