in reply to Re^2: Usuage of CPAN's Text::Delimited
in thread Usuage of CPAN's Text::Delimited

I believe your first 'use lib' went one directory too far. Try:
use lib "/user/comp/name/lib/site_perl/5.8.8;
When you 'use Text::Delimited;', 'Text' is searched for in @INC, then Delimited.pm in 'Text'. Since there is no "/user/comp/name/lib/site_perl/5.8.8/Text/Text", Delimited.pm wasn't found.