in reply to Re: contents of @INC
in thread contents of @INC

perl -MCwd=abs_path -le 'print for map abs_path($_), @INC'
That's a sortofa useless map in there, if you shuffle a bit:
perl -MCwd=abs_path -le 'print abs_path($_) for @INC'

-- Randal L. Schwartz, Perl hacker