NAME Dist::Zilla::Plugin::InsertCommandOutput - Insert the output of command into your POD VERSION This document describes version 0.054 of Dist::Zilla::Plugin::InsertCommandOutput (from Perl distribution Dist-Zilla-Plugin-InsertCommandOutput), released on 2021-05-21. SYNOPSIS In dist.ini: [InsertCommandOutput] ;make_verbatim=1 In your POD: # COMMAND: netstat -anp DESCRIPTION This module finds "# COMMAND: ..." directives in your POD, pass it to the Perl's backtick operator, and insert the result into your POD as a verbatim paragraph (unless if you set "make_verbatim" to 0, in which case output will be inserted as-is). If command fails ($? is non-zero), build will be aborted. HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. SEE ALSO Dist::Zilla::Plugin::InsertCodeResult, which can also be used to accomplish the same thing, e.g. with "# CODE: my $res = `netstat -anp`; die if $?; $res" except the DZP::InstallCommandResult plugin is shorter. Dist::Zilla::Plugin::InsertCodeOutput, which can also be used to accomplish the same thing, e.g. with "# CODE: system "netstat -anp"; die if $?". Dist::Zilla::Plugin::InsertExample AUTHOR perlancar COPYRIGHT AND LICENSE This software is copyright (c) 2021, 2019, 2018, 2015, 2014 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.