PDF to EPUB conversion
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 ; doneBack to top |
All times are GMT - 8 Hours |