- or download this
getStuff configs --force=all --out out.txt -v -a
- or download this
use Getopt::Long;
use Data::Dumper;
...
print Dumper \%opts;
print Dumper \@ARGV;
}
- or download this
$VAR1 = {
'out' => 'out.txt',
...
$VAR1 = [
'configs'
];
- or download this
GetOptions(\my %opts, "force=s", "out", "v", "a");
- or download this
$VAR1 = {
'out' => 1,
...
'configs',
'out.txt'
];