Skip to content

Instantly share code, notes, and snippets.

@rhardih
Created August 26, 2015 17:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save rhardih/34526d604db7447b2904 to your computer and use it in GitHub Desktop.
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)
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