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
Raw Normal View History

2019-03-11 14:11:20 +00:00
#!/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