escabes dollar signs
This commit is contained in:
parent
4da4b7d630
commit
459571b540
@ -48,14 +48,14 @@ ENTRYPOINT ["/bin/bash", "-c", "/calibre/entrypoint.sh"]
|
||||
"""
|
||||
dockerScript = """#!/usr/bin/env bash
|
||||
|
||||
IFS=$'\\n'
|
||||
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
|
||||
/opt/calibre/ebook-convert "${i}" "/calibre/output/${i%.*}.azw3"
|
||||
rm -f -v "${i}"
|
||||
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
|
||||
/opt/calibre/ebook-convert "\${i}" "/calibre/output/\${i%.*}.azw3"
|
||||
rm -f -v "\${i}"
|
||||
done
|
||||
fi
|
||||
done
|
||||
|
Reference in New Issue
Block a user