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

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