13 lines
318 B
Bash
Executable file
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.
|