Help for this page
#!/usr/bin/perl ... GetOptions( "test=s" => \$option_test ); print 'option is not defined.' if ( ! $option_test );
$ test.pl option is not defined. ... $ test.pl -t Option test requires an argument option is not defined.