Generate Unix man pages from a simple, readable text format
Small man page generator
scdoc
$ scdoc < myprogram.scd > myprogram.1
$ scdoc < myprogram.scd | man /dev/stdin
$ for file in docs/*.scd; do scdoc < "$file" > "${file%.scd}"; done