pod2man

Convert Perl POD documentation to Unix man pages

brewmacoslinux
Try with needOr install directly
Source

About

Perl documentation generator

Commands

pod2man

Examples

convert perl documentation to man page format$ pod2man script.pl > script.1
generate man page with custom section number$ pod2man --section=3 module.pm > module.3
create man page with specific center header text$ pod2man --center='My Project' script.pl > script.1
convert pod file with custom release version$ pod2man --release='v2.0' input.pod > output.1
generate man page with all metadata options$ pod2man --section=1 --center='Project Docs' --release='1.0' script.pl > script.1