Tom Panzarella on Mon, 1 Oct 2001 13:36:40 -0400 |
On Mon, 1 Oct 2001, at 1:15pm, Urb LeJeune wrote: > Is there a way to display all installed Perl modules, and > ideally, their version? This is from "Perl in a Nutshell", on Unix/Linux try: $ find `perl -e 'print "@INC"'` -name '*.pm' -print you'll probably want to redirect that output to a file that you can view in your editor or pager. --tom. **Majordomo list services provided by PANIX <URL:http://www.panix.com>** **To Unsubscribe, send "unsubscribe phl" to majordomo@lists.pm.org**
|
|