Edit: /usr/bin/podlint (1537B)
#!/usr/bin/perl -w
use Pod::POM;
use Getopt::Std;
use File::Basename;
my $program = basename($0);
my %opts;
getopts('fh', \%opts);
die usage() if $opts{ h };
my $file = shift || die usage();
my $parser;
{
no warnings 'once';
$parser = Pod::POM->new( warn => 1, code => 1 )
|| die "$Pod::POM::ERROR\n";
}
my $pom = $parser->parse_file($file)
|| die $parser->error(), "\n";
print $pom if $opts{ f };
sub usage {
return <
abw@kfs.orgE
=head1 VERSION
This is version 0.2 of podlint.
=head1 COPYRIGHT
Copyright (C) 2000, 2001 Andy Wardley. All Rights Reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=head1 SEE ALSO
For further information please see L.