6 lines
148 B
Bash
6 lines
148 B
Bash
|
#!/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
|