Created
September 26, 2017 07:15
-
-
Save sudoankit/9b2f1456d9468d439a4a721443a4ee6c to your computer and use it in GitHub Desktop.
DJVU to PDF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in *.djvu; | |
do ddjvu -format=pdf "$i" "${i/%.djvu/}.pdf" && rm $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment