![]() |
perl help
How do I find out if these modules are installed correctly and which version they are?
Time::ParseDate Term::ReadKey |
Generally I use perldoc to see if a module is installed. Its not perfect but it usually works.
perldoc Time::ParseDate perldoc Term::ReadKey You could also just try using them in a script and see if you get any errors. |
Perldiver is a nice little utility to check installed modules on
your webhost. Get it at http://www.scriptsolutions.com/programs/free/perldiver/ No config is needed. Just download it, upload to your cgi-bin, chmod 755, and call it up in browser. |
Quote:
|
perl -MTerm::ReadKey -e 'print $Term::ReadKey::VERSION,"\n"';
perl -MTime::ParseDate -e 'print $Time::ParseDate::VERSION,"\n"'; |
All times are GMT -7. The time now is 07:40 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123