From f6a1ba2d3a49363edb9128fda6e518a22fb82eee Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 18 Apr 2021 11:09:25 -0300 Subject: Fix: show: watch: subfolder support --- show | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/show b/show index 2815aad..aa8c539 100755 --- a/show +++ b/show @@ -12,6 +12,7 @@ LIST="$DOCS/$FILELIST" DOC_PATTERN=".*\.(txt|doc|docx|rtf|pdf|sxc|csv|odt|odf|ods|xls|xlsx|ppt|epub|mobi|djvu|lit)" FIND_OPTS="-not -path '*.git*' -regextype posix-egrep -iregex" ITEM="$1" +OPTION="$2" DATE="`date +%s`" MAX_AGE="86400" @@ -62,8 +63,14 @@ if [ "$ITEM" == "--search" ]; then grep -i -- "$*" $LIST elif [ "$ITEM" == "--watch" ]; then # Convert symlink to full path and start inotifywait loop - #while inotifywait -e modify -e create -e move -e delete -r "`readlink -f $DOCS`"; do - while inotifywait -e modify -e move -r "`readlink -f $DOCS`"; do + folder="`readlink -f $DOCS`" + subfolder="$OPTION" + echo "Watching changes at $folder/$subfolder..." + + #while inotifywait -e modify -e create -e move -e delete -r "$folder"; do + #while inotifywait -e modify -e move -r "$folder"; do + #while inotifywait -e modify -e move -r "$folder/$subfolder"; do + while inotifywait -e modify -e create -e move -e delete -r "$folder/$subfolder"; do $PROGRAM --refresh done else -- cgit v1.2.3