escabes dollar signs

This commit is contained in:
Hyatt 2022-04-15 08:38:27 -05:00
parent 4da4b7d630
commit 459571b540
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -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