djvu2pdf

Convert DjVu files to PDF format

brewmacoslinux
Try with needOr install directly
Source

About

Small tool to convert Djvu files to PDF files

Commands

djvu2pdf

Examples

Convert a single DjVu file to PDF$ djvu2pdf document.djvu document.pdf
Convert DjVu file with custom output filename$ djvu2pdf input.djvu output.pdf
Convert multiple DjVu files in a directory$ for file in *.djvu; do djvu2pdf "$file" "${file%.djvu}.pdf"; done