texi2mdoc

Convert Texinfo documentation files to mdoc manual page format.

brewmacoslinux
Try with needOr install directly
Source

About

Convert Texinfo data to mdoc input

Commands

texi2mdoc

Examples

convert texinfo file to mdoc format$ texi2mdoc input.texi > output.mdoc
generate man page from texinfo documentation$ texi2mdoc program.texi | mandoc -T ascii | less
convert texinfo to mdoc and save as file$ texi2mdoc -o output.mdoc input.texi
batch convert multiple texinfo files$ for file in *.texi; do texi2mdoc "$file" > "${file%.texi}.mdoc"; done
preview converted mdoc in terminal$ texi2mdoc input.texi | man -l -