opus-data/dirMonitor.sh

6 lines
147 B
Bash
Raw Normal View History

2021-02-11 17:52:37 +01:00
#!/bin/bash
2021-02-19 15:37:29 +01:00
inotifywait -m -q OPUS -e create -e moved_to |
2021-02-11 17:52:37 +01:00
while read fpath action file; do
2021-02-19 15:37:29 +01:00
Rscript OpusData.R $fpath $file >& /dev/null
done