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
Michel Roux 28b2091182
All checks were successful
continuous-integration/drone/push Build is passing
New way of generating epubs
2022-08-18 12:59:02 +02:00

8 lines
143 B
Bash

#!/usr/bin/env bash
for FILE in output/epubs/*
do
ebook-polish -fjpuiHU "${FILE}" "${FILE}"
ebook-convert "${FILE}" "${FILE%.*}.pdf"
done