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
|
dockerScript = """#!/usr/bin/env bash
|
||||||
|
|
||||||
IFS=$'\\n'
|
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 \\*.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 \\*.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
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Reference in New Issue
Block a user