in reply to Identifying version of Perl Module: Getopt::Std

Hi wackattack,

You can do this:

use Getopt::Std; print "$Getopt::Std::VERSION\n";

However, looking at the version number like that is usually not necessary unless you're testing or debugging. Why do you need it? If you want to specify a minimum version required for your script, you can say something like:

use Getopt::Std 1.07;

Hope this helps,
-- Hauke D