libpagemaker

Convert Aldus/Adobe PageMaker documents to other formats.

brewmacoslinux
Try with needOr install directly
Source

About

Imports file format of Aldus/Adobe PageMaker documents

Commands

pmd2htmlpmd2pdf

Examples

convert pagemaker document to html$ pmd2html document.pmd output.html
convert pagemaker file to pdf$ pmd2pdf document.pmd output.pdf
extract text from pagemaker document$ pmd2html document.pmd - | lynx -stdin -dump
batch convert multiple pagemaker files to html$ for file in *.pmd; do pmd2html "$file" "${file%.pmd}.html"; done
convert pagemaker document and view as pdf$ pmd2pdf document.pmd - | open -f -a Preview