Skip to content

Instantly share code, notes, and snippets.

@imharvol
Created November 22, 2021 10:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imharvol/2da746fa77b607e5b8029d9e5f451db2 to your computer and use it in GitHub Desktop.
Save imharvol/2da746fa77b607e5b8029d9e5f451db2 to your computer and use it in GitHub Desktop.
Bash command to convert asciidoc files to MOBI files
NAME="FILENAME" && \
asciidoctor -b html5 ${NAME}.asciidoc && \
htmldoc -t epub ${NAME}.html -f ${NAME}.epub && \
ebook-convert ${NAME}.epub ${NAME}.mobi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment