Skip to content

Instantly share code, notes, and snippets.

@fernvenue
Last active February 11, 2023 08:32
Show Gist options
  • Save fernvenue/cf03b869f00b72075b2a6d54282a80cb to your computer and use it in GitHub Desktop.
Save fernvenue/cf03b869f00b72075b2a6d54282a80cb to your computer and use it in GitHub Desktop.
Simple script to convert multiple djvu files to pdf.
#!/bin/bash
apt install -y djvulibre-bin ghostscript
for file in *.djvu; do djvups -verbose "$file" "${file%.*}.ps"; done
for file in *.ps; do ps2pdf "$file" "${file%.*}.pdf"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment