corrects if statement and corrects output path

This commit is contained in:
Hyatt 2022-04-15 09:07:35 -05:00
parent 432e1b5970
commit 4b3d9e29ae
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -53,9 +53,9 @@ IFS=\$'\\n'
while true; do
sleep 5s
if [ -z "\$(find /calibre/input -type f \\( -iname "*.mobi" -o -iname "*.epub" -o -iname "*.prc" \\) -print -quit)" ]; then
if [ ! -z "\$(find /calibre/input -type f \\( -iname "*.mobi" -o -iname "*.epub" -o -iname "*.prc" \\) -print -quit)" ]; then
for i in \$(find /calibre/input -type f \\( -iname "*.mobi" -o -iname "*.epub" -o -iname "*.prc" \\)); do
/opt/calibre/ebook-convert "\${i}" "/calibre/output/\${i%.*}.azw3"
/opt/calibre/ebook-convert "\${i}" "/calibre/output/\$(basename \${i%.*}.azw3)"
rm -f -v "\${i}"
done
fi