libmobi

C library for reading and converting Kindle MOBI ebook files

brewmacoslinux
Try with needOr install directly
Source

About

C library for handling Kindle (MOBI) formats of ebook documents

Commands

mobi

Examples

convert mobi ebook to html format$ mobi book.mobi -o output.html
extract text content from mobi file$ mobi book.mobi -t output.txt
view mobi file metadata and information$ mobi book.mobi -i
convert mobi to epub ebook format$ mobi book.mobi -o output.epub
batch convert multiple mobi files to html$ for f in *.mobi; do mobi "$f" -o "${f%.mobi}.html"; done