This repository has been archived on 2023-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
langue-phundrak-com/epub-to-mobi.sh

6 lines
148 B
Bash
Executable File

#!/usr/bin/env fish
for file in (find -type f | grep epub | grep -v "epub-to-mobi" | sed 's/\.[^.]*$//')
ebook-convert $file.epub $file.mobi
end