From: Silvio Rhatto Date: Mon, 2 Nov 2020 21:24:53 +0000 (-0300) Subject: Show: use a filelist X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=aac6cc1fe41986300e46b3bc5015b47cee3378ff;p=scripts.git Show: use a filelist --- diff --git a/show b/show index b822af5..a3c6ff5 100755 --- a/show +++ b/show @@ -6,6 +6,7 @@ # Parameters BASENAME="`basename $0`" DOCS="$HOME/data/doc" +LIST="$DOCS/.filelist" ITEM="$1" # Check @@ -15,4 +16,5 @@ if [ -z "$ITEM" ]; then fi # Dispatch -find $DOCS -iname "*$ITEM*" | head -1 | while read item; do xdg-open "$item"; done +#find $DOCS -iname "*$ITEM*" | head -1 | while read item; do xdg-open "$item"; done +grep "$ITEM" $LIST | while read item; do xdg-open "$item"; done