App-tmclean
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
lib/App/tmclean.pm view on Meta::CPAN
sub new_with_options {
my ($class, @argv) = @_;
my ($opt) = $class->parse_options(@argv);
$class->new($opt);
}
sub parse_options {
my ($class, @argv) = @_;
local @ARGV = @argv;
GetOptions(\my %opt, qw/
days=i
before=s
dry-run
/) or pod2usage(2);
$opt{dry_run} = delete $opt{'dry-run'};
return (\%opt, \@ARGV);
}
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.990 second using v1.00-cache-2.02-grep-82fe00e-cpan-da92000dfeb )