Created
August 26, 2015 17:18
-
-
Save rhardih/34526d604db7447b2904 to your computer and use it in GitHub Desktop.
Recursively find and convert .epub to .mobi using calibres ebook-convert (in parallel)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name "*.epub" -exec sh -c 'ebook-convert "{}" "$(dirname "{}")/$(basename -s .epub "{}").mobi" &' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment