Eric Guo's blog.cloud-mes.com

Hoping writing JS, Ruby & Rails and Go article, but fallback to DevOps note

One Line to Convert ePub File Into the Mobi File in PowerShell

Permalink

Convert EPUB files to MOBI with Kindlegen
gci *.epub | % {iex $("kindlegen {1} -c2 -o '{0}.mobi'" -f $($_.BaseName -replace "\."," "),$_.Name)}

Comments