fixes shell script's find command
This commit is contained in:
parent
459571b540
commit
c3d0980ced
@ -52,8 +52,8 @@ IFS=\$'\\n'
|
|||||||
|
|
||||||
while true; do
|
while true; do
|
||||||
sleep 5s
|
sleep 5s
|
||||||
if [ -z "\$(find /calibre/input -type f \\( -iname \\*.mobi -o -iname \\*.epub -o \\*.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 \\*.prc \\)); do
|
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/\${i%.*}.azw3"
|
||||||
rm -f -v "\${i}"
|
rm -f -v "\${i}"
|
||||||
done
|
done
|
||||||
|
Reference in New Issue
Block a user