You are on page 1of 1

#!

/bin/bash
find . -name "*.epub" -print0 |
while read -d $'\0' file;
do
ebook-convert "$file" "${file%epub}pdf";#Remove the "epub" and attach the "pdf
" extension
#rm "$file"
#ddjvu -format=pdf -quality=50 -verbose Graham\,\ Knuth\,\ Patashnik.-Concrete
\ mathematics.djvu a.pdf;
done

You might also like