Hi would it be possible to get an inotifywait script added to the RDP-Calibre docker please.
Example inotify watches the ebook download dir then calls the update calibre script when it detects changes.
inotifywait script at boot
while true #run indefinitely
do
inotifywait -r -e ,close_write,move,create, /download && /calibre-update.sh
done
something like this for calibre-update.sh
/opt/calibre/calibredb add --recurse --library-path "/config/" "/download" 2>&1