Hello Monks,
now I have another little problem...
Now my script is locate in directory LIB
and I have to use my toConfig package locate in parent directory.
So I have:
- toConfig.pm
------------- LIB
----------------- myFile.pl
myFile.pl use toConfig, that is in the parent directory.
I can I do that?
I tried with:
use FindBin;
use lib "$FindBin::Bin/../";
But it doesn't works.