#!/usr/bin/env perl

use v5.14;
use warnings;
use App::winmaildat2tar;

App::winmaildat2tar->new->run(splice @ARGV);

exit;

__END__

=encoding utf-8

=head1 NAME

winmaildat2tar - Convert winmail.dat (TNEF data) to tentative archive

=head1 VERSION

Version 0.9901

=head1 SYNOPSIS

$ winmaildat2tar winmail.dat > winmail.tar

=head1 DESCRIPTION

This command read C<winmail.dat> file in TNEF format and produce
another tentative archive formatted data (tar by default).

=over 7

=item B<--format> B<tar>|B<zip>, B<-f> ...

Specify archive format.  Default is B<tar>.  Curretly B<tar>, B<ar>
and B<zip> are supported.

If the command is executed as a name of I<winmaildat2xxx>, I<xxx> part
is used as a format name.

=back

=head1 INSTALL

=head2 CPANMINUS

Install from CPAN

    cpanm App::winmaildat2tar

or

    cpanm https://github.com/kaz-utashiro/winmaildat2tar.git

=head1 SEE ALSO

L<App::winmaildat2tar>, L<https://github.com/kaz-utashiro/winmaildat2tar>

L<Convert::TNEF>, L<Archive::Tar>, L<Archive::Ar>, L<Archive::Zip>

=head1 AUTHOR

Kazumasa Utashiro

=head1 LICENSE

Copyright 2020-2022 Kazumasa Utashiro.

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

=cut
