I'm working with a .kdf file (making a book for Kindle) and want to extract the text from it because I made changes to it and need to update my .doc file. How to extract the text? An inspection of the file suggests that it is an SQLite database file:
head -c 15 book.kdf # => SQLite format 3
When I run sqlite3 book.kdf
, I find no tables, though when I peruse the file with LeSS I recognize parts of the text of the book, albeit in no format I understand.
Is there a way to extract the text?