#!/usr/bin/perl

use strict;
use warnings;

use File::Dir::Dumper::App;

my $app = File::Dir::Dumper::App->new({argv => \@ARGV});
exit($app->run());


=head1 NAME

dir-dump - the File::Dir::Dumper command line application.

=head1 SYNOPSIS

B<dir-dump> [-o output-file.txt] /path/to/directory/to/dump

(B<dir-dump> B<--man> displays the man page)

=head1 DESCRIPTION

Run this program with the path to the directory to dump to produce a dump
on the standard output.

Run it with B<-o output-file.txt> to write to output-file.txt.

One can also specify multiple B<--digest [digest]> arguments in order to
specify which digests to calculate for each plain file. See the L<Digest>
module for information.

=head1 SEE ALSO

L<http://metacpan.org/release/File-Dir-Dumper> - File-Dir-Dumper on the CPAN.

=head1 AUTHOR

Shlomi Fish, L<http://www.shlomifish.org/>

=cut
