Skip to content

Instantly share code, notes, and snippets.

@gtpedrosa
Last active April 5, 2017 12:26
Show Gist options
  • Select an option

  • Save gtpedrosa/f38128346e8d1c7ba2cd72ff48d4a0ec to your computer and use it in GitHub Desktop.

Select an option

Save gtpedrosa/f38128346e8d1c7ba2cd72ff48d4a0ec to your computer and use it in GitHub Desktop.
Batch convert epub to mobi using calibre ebook-convert
# Credits: https://ubuntuforums.org/showthread.php?t=2085148
for book in *.epub; do echo "Converting $book"; ebook-convert "$book" "$(basename "$book" .epub).mobi"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment