1 2 3 4 5 6 7 8
#!/usr/bin/perl use strict; use warnings; use Getopt::Std; my %opts; getopts('hvs:x:t:d:', \%opts); usage() if($opts{h});
1 2 3 4 5 6 7 8 9 10
#! /usr/bin/perl use strict; use warnings; use Getopt::Std; use Data::Dumper; getopts('fb?', \my %opts ); print Data::Dumper->new( [ \%opts ], [ 'opts' ])->Sortkeys(1)->Dump();