adad
03-19-2001, 10:48 AM
How can I get know which perl modules are installed on my Cobalt RaQ3?
TIA, for your help.
Daniel
TIA, for your help.
Daniel
![]() | View Full Version : perl modules adad 03-19-2001, 10:48 AM How can I get know which perl modules are installed on my Cobalt RaQ3? TIA, for your help. Daniel allan 03-19-2001, 11:41 AM SSH into the server and type: find `perl -e 'print "@INC"'` -name '*.pm' -print There are probably a lot of them, so you may want to output the information to a file: find `perl -e 'print "@INC"'` -name '*.pm' -print > somefile |