This repository has been archived on 2024-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
Auberge_Vagabonde/convert.sh

8 lines
137 B
Bash
Raw Normal View History

2021-05-18 13:21:20 +00:00
#!/usr/bin/env bash
2022-10-05 21:51:42 +00:00
for FILE in output/*
2021-05-18 13:21:20 +00:00
do
2022-10-05 21:41:17 +00:00
ebook-polish -fjpuiHU "${FILE}" "${FILE}"
2021-05-18 13:21:20 +00:00
ebook-convert "${FILE}" "${FILE%.*}.pdf"
done