#!/usr/bin/env perl
# PODNAME: dedup

use strict;
use warnings; 

use App::FileDedup;
App::FileDedup->new_with_options->run;

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

dedup

=head1 VERSION

version 0.001

=head1 SYNOPSIS

 dedup $HOME -nfg 

 is the same as:

 dedup $HOME --dont-ask --non-recursive --group 

=head1 NAME

dedup.pl

=head1 DESCRIPTION 

CLI to L<File::Dedup> that can find and eliminate duplicates files across directories

=head1 USAGE

 dedup <directory> [options]

=head1 OPTIONS

 -n 
 --dont-ask flag to indicate whether files should be deleted interactively or programmatically

 -f (flat)
 --non-recursvive flag to indiciate whether a recursive or top-level search should be performed

 -g 
 --group flag to indicate that duplicates should be grouped into new subfolders

=head1 AUTHOR

Hunter McMillen <mcmillhj@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Hunter McMillen.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
