scdoc

Generate Unix man pages from a simple, readable text format

brewmacoslinux
Try with needOr install directly
Source

About

Small man page generator

Commands

scdoc

Examples

Convert a scdoc source file to man page format$ scdoc < myprogram.scd > myprogram.1
Generate and display a man page directly$ scdoc < myprogram.scd | man /dev/stdin
Create man pages for multiple commands in a build process$ for file in docs/*.scd; do scdoc < "$file" > "${file%.scd}"; done