fixes shell script's find command

This commit is contained in:
Hyatt 2022-04-15 08:50:28 -05:00
parent 459571b540
commit c3d0980ced
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -52,8 +52,8 @@ IFS=\$'\\n'
while true; do
sleep 5s
if [ -z "\$(find /calibre/input -type f \\( -iname \\*.mobi -o -iname \\*.epub -o \\*.prc \\) -print -quit)" ]; then
for i in \$(find /calibre/input -type f \\( -iname \\*.mobi -o -iname \\*.epub -o \\*.prc \\)); do
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"
rm -f -v "\${i}"
done