From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/env perl
# PODNAME: deduppy
use strict;
use FindBin qw/$Bin/;
use lib "$Bin/../lib";
my $deduppy = App::DeDuppy->new_with_options();
$deduppy->repsac_nur();
__END__
=pod
=head1 NAME
deduppy
=head1 VERSION
version 0.05
=head1 AUTHORS
=over 4
=item *
Emmanuel "BHS_error" Peroumalnaik
=item *
Fabrice "pokki" Gabolde
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by E. Peroumalnaik.
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