in reply to using a file in a different dir
Just put in the absolute directory path where i have the directory specified. I know that there is something odd about using '..' in an @INC path, but i cant remember exactly what, someone else should know.#!/usr/bin/perl use strict; use warnings; use lib '/home/someuser/somedir'; use myfile;
|
|---|