corrects if statement and corrects output path
This commit is contained in:
parent
432e1b5970
commit
4b3d9e29ae
@ -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
|
||||
|
Reference in New Issue
Block a user