in reply to List of all perl modules existing on my machine
for path in `perl -e 'print join "\n", @INC'`; do find $path -name "*.pm"|perl -pe "s|$path/||;s|/|::|g;s/\.pm$//;" done |uniq
CU
Robartes- demonstrating that a combination of shell and Perl can be even gnarlier that either one alone :)
|
|---|