Last active
April 5, 2017 12:26
-
-
Save gtpedrosa/f38128346e8d1c7ba2cd72ff48d4a0ec to your computer and use it in GitHub Desktop.
Batch convert epub to mobi using calibre ebook-convert
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
| # 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