in reply to Re: use strict with Getopt::Std
in thread use strict with Getopt::Std

One thing to note is that if you pre-define individual variables, you need to use "our" rather than "my":
use strict; use Getopt::Std; our($opt_a, $opt_b); getopts('ab');
Mike