Perl Issues and Solutions

Display The Include paths for perl :

perl -e 'print join("\n", @INC);'

View Cpan Configuration:

cpan>o conf

Find perl module’s Path:

perl -MList::Util -e'print $_ . " => " . $INC{$_} . "\n" for keys %INC'