Help for this page
use Getopt::Long; GetOptions( 'thing=s' => \(my $thing = ''), 'other=s' => \(my $other = ''), 'flag' => \(my $flag = 0), ) or die 'options'; # usually scripts are for my own use
use Getopt::Long; GetOptions( 'array=s@' => \(my @array) ) or die 'options';