in reply to @INC Question

If you're not aware already, @INC is the array that contains the directories perl will search through to find modules.

If you get an error like the one you're seeing, it's likely to be one of the following:


This can be fixed by either installing the module, or adding the line use lib '/path/to/module/'; at the top of your script (obviously entering the right path).

Hope that helps.

BazB.

Update: Another post of mine that duplicates others. *Sigh*
Not deliberate, honest - phone rings before I hit submit!