Answers:
打开Automator,选择服务模板,将“Service received selected”更改为“files or folders”,添加Run Shell Script操作,将“Pass input”更改为“as arguments”,并将命令更改为:
for f;do /Applications/calibre.app/Contents/MacOS/ebook-convert "$f" "${f%.*}.mobi";done
或者如果你添加
2mobi() {
for f; do
/Applications/calibre.app/Contents/MacOS/ebook-convert "$f" "${f%.*}.mobi"
done
}
对于shell配置文件~/.bash_profile
,你可以2mobi /path/to/file.epub
在shell中运行。