The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
# PODNAME: software-license
# ABSTRACT: command-line interface to Software::License

use strict;
use warnings;
use App::Software::License;

local $SIG{__WARN__} = sub {
    warn @_ unless $_[0] =~ /Specified configfile '.*' does not exist, is empty, or is not readable/s;
};
App::Software::License->new_with_options->run;

__END__

=pod

=encoding UTF-8

=head1 NAME

software-license - command-line interface to Software::License

=head1 VERSION

version 0.05

=head1 SUPPORT

Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=App-Software-License>
(or L<bug-App-Software-License@rt.cpan.org|mailto:bug-App-Software-License@rt.cpan.org>).

There is also a mailing list available for users of this distribution, at
L<http://lists.perl.org/list/cpan-workers.html>.

There is also an irc channel available for users of this distribution, at
L<C<#toolchain> on C<irc.perl.org>|irc://irc.perl.org/#toolchain>.

=head1 AUTHOR

Florian Ragwitz <rafl@debian.org>

=head1 COPYRIGHT AND LICENCE

This software is copyright (c) 2009 by Florian Ragwitz.

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