diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2020-11-02 18:43:10 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2020-11-02 18:43:10 -0300 |
commit | 1e5b4c703fb61250046e116d362d14e9e30cc9c8 (patch) | |
tree | b9750a374df5b6a3f605c05d61cc5913c4a76a37 | |
parent | 6c70ea5d23fd236bbd5f69e29242445a6bbd9649 (diff) | |
download | scripts-1e5b4c703fb61250046e116d362d14e9e30cc9c8.tar.gz scripts-1e5b4c703fb61250046e116d362d14e9e30cc9c8.tar.bz2 |
Feat: show: fixes (4)
-rwxr-xr-x | show | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |