in reply to Re^2: Using Excel timestamp with perl
in thread Using Excel timestamp with perl

You can load modules to an external directory and just reference that dir on startup.
#!/usr/bin/perl use strict; use warnings; push(@INC, "/jet/prod/include"); use MyPersonalModule; #code here

Replies are listed 'Best First'.
Re^4: Using Excel timestamp with perl
by Anonymous Monk on Jun 16, 2014 at 23:09 UTC

    That is wrong, it does not work. You want use lib "/jet/prod/include"; instead so that the modification to @INC happens at compile time.