aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2020-11-02 18:43:10 -0300
committerSilvio Rhatto <rhatto@riseup.net>2020-11-02 18:43:10 -0300
commit1e5b4c703fb61250046e116d362d14e9e30cc9c8 (patch)
treeb9750a374df5b6a3f605c05d61cc5913c4a76a37
parent6c70ea5d23fd236bbd5f69e29242445a6bbd9649 (diff)
downloadscripts-1e5b4c703fb61250046e116d362d14e9e30cc9c8.tar.gz
scripts-1e5b4c703fb61250046e116d362d14e9e30cc9c8.tar.bz2
Feat: show: fixes (4)
-rwxr-xr-xshow5
1 files changed, 4 insertions, 1 deletions
diff --git a/show b/show
index 8150403..46061d8 100755
--- a/show
+++ b/show
@@ -41,4 +41,7 @@ fi
# Dispatch
#find $DOCS -iname "*$ITEM*" | head -1 | while read entry; do xdg-open "$entry"; done
-cd $DOC && grep -- "$ITEM" $LIST | while read entry; do xdg-open "$entry"; done
+cd $DOC && grep -- "$ITEM" $LIST | while read entry; do
+ echo "Opening $entry..."
+ xdg-open "$entry"
+done