Tim here. > Can I use ebook-convert, I can't do ebook-convert *.epub *.txt
If they're all in the same directory you can use
$ for f in *.epub ; do ebook-convert "$f" "${f%.epub}.txt" ; done
which will iterate over all the *.epub files and convert each
individually, changing the output-name to the .txt extension.
-Tim
_______________________________________________
Blinux-list mailing list
[email protected]
https://listman.redhat.com/mailman/listinfo/blinux-list
