How do I get the defaults without duplicates?

Thanks

#!/usr/bin/perl -- system qw[ module-starter --author=name --email=email --module=TW --module=TW::Plugin::A --module=TW::Plugin::B --module=TW::Plugin::C ]; chdir qw[ TW ]; system qw[ podweaver ]; # shows duplicates are generated system qw[ grep "^=head" lib/TW.pm ]; __END__ Added to MANIFEST: Changes Added to MANIFEST: ignore.txt Added to MANIFEST: lib/TW.pm Added to MANIFEST: lib/TW/Plugin/A.pm Added to MANIFEST: lib/TW/Plugin/B.pm Added to MANIFEST: lib/TW/Plugin/C.pm Added to MANIFEST: Makefile.PL Added to MANIFEST: MANIFEST Added to MANIFEST: README Added to MANIFEST: t/00-load.t Added to MANIFEST: t/boilerplate.t Added to MANIFEST: t/manifest.t Added to MANIFEST: t/pod-coverage.t Added to MANIFEST: t/pod.t Created starter directories and files No META.json or META.yml file found, is '.' a distribution directory? No 'weaver.ini' found, using Pod::Weaver defaults, this will most like +ly insert duplicate sections Weaving file 'lib/TW.pm' [@Default/Name] couldn't find abstract in lib/TW.pm Weaving file 'lib/TW/Plugin/A.pm' [@Default/Name] couldn't find abstract in lib/TW/Plugin/A.pm Weaving file 'lib/TW/Plugin/B.pm' [@Default/Name] couldn't find abstract in lib/TW/Plugin/B.pm Weaving file 'lib/TW/Plugin/C.pm' [@Default/Name] couldn't find abstract in lib/TW/Plugin/C.pm =head1 NAME =head1 VERSION =head1 SYNOPSIS =head1 NAME =head1 VERSION =head1 EXPORT =head1 SUBROUTINES/METHODS =head2 function1 =head2 function2 =head1 AUTHOR =head1 BUGS =head1 SUPPORT =head1 ACKNOWLEDGEMENTS =head1 LICENSE AND COPYRIGHT

In reply to using Pod::Weaver defaults, without duplicate sections by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.