PDF to EPUB conversion
techAdmin
Status: Site Admin
Joined: 26 Sep 2003
Posts: 4127
Location: East Coast, West Coast? I know it's one of them.
Reply Quote
To change pdfs to epub, first, get all your pdfs into one directly, then cd to that, then run this:

:: Code ::
find ./ -iname "*pdf" -type f | while read f; do echo -e "\e[1mConverting file $f \e[0m" ; ebook-convert "$f" "${f%.pdf}.epub" --enable-heuristics ; done

Back to top
Display posts from previous:   

All times are GMT - 8 Hours