aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2020-11-02 18:48:52 -0300
committerSilvio Rhatto <rhatto@riseup.net>2020-11-02 18:48:52 -0300
commit98d4204ef95a5e60d97e6e2a293f138b5ca99d13 (patch)
treef3db16bf3c7496d6b9a02e8b9fbb41a1308d609f
parent04451c17a85485fc3df3bca28dc3179be699651f (diff)
downloadscripts-98d4204ef95a5e60d97e6e2a293f138b5ca99d13.tar.gz
scripts-98d4204ef95a5e60d97e6e2a293f138b5ca99d13.tar.bz2
Feat: show: fixes (6)
-rwxr-xr-xshow2
1 files changed, 1 insertions, 1 deletions
diff --git a/show b/show
index 822e27f..86ece43 100755
--- a/show
+++ b/show
@@ -43,5 +43,5 @@ fi
#find $DOCS -iname "*$ITEM*" | head -1 | while read entry; do xdg-open "$entry"; done
grep -- "$ITEM" $LIST | while read entry; do
echo "Opening $entry..."
- cd $DOC && xdg-open "$entry"
+ cd $DOCS && xdg-open "$entry"
done