handbrake/hooks/post_watch_folder_processing.sh.example
2025-01-10 20:59:07 -08:00

13 lines
318 B
Bash
Executable file

#!/bin/sh
#
# This is an example of a post watch folder processing hook. This script is
# always invoked with /bin/sh (shebang ignored).
#
# The argument of the script is the path to the watch folder.
#
WATCH_FOLDER=$1
echo "post-watch folder processing: Watch folder = $WATCH_FOLDER"
# TODO: Do something useful.