exp-dist-audiolog/system/inotifywait-watcher/watcher.sh
2021-10-05 21:39:54 +09:00

25 lines
536 B
Bash
Executable file

#!/bin/bash
#set minimal required path
export PATH=$PATH:$HOME/.local/bin
#load pyenv of 'syncthing' user
export PYENV_ROOT="/var/www/syncthing/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
eval "$(pyenv virtualenv-init -)"
#load env for the proj. 'exp-dist'
pyenv shell exp-dist
#change directory
cd /home/yunohost.app/syncthing/Sync/exp-dist-losttr
#start to watch..
./run.sh
while inotifywait -e modify,move,delete,close_write -r ./data/ ; do
./run.sh
done