in reply to Re: Perl One Liner to Check Location of a Module
in thread Perl One Liner to Check Location of a Module
I keep the following shell script around:
#!/bin/sh perl "-M$1" -e 'print map { sprintf( "%20s : %s\n", $_, $INC{$_} ) } s +ort keys %INC; print "\n'$1' version : $'$1'::VERSION\n\n"'
|
|---|