From e97d5ddc130848f217ba1ffa5fb3c0f2be2d509b Mon Sep 17 00:00:00 2001 From: Dimitris Marakomihelakis Date: Sun, 17 Jan 2021 09:53:22 +0200 Subject: [PATCH] Minor changes and typos --- shellnotes.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shellnotes.sh b/shellnotes.sh index 5e4c428..0103e08 100644 --- a/shellnotes.sh +++ b/shellnotes.sh @@ -53,7 +53,7 @@ function quickread() { else clear echo "No such note." - cd ~ + cd $dir fi cd $dir } @@ -72,7 +72,7 @@ if [ -e $notename ]; then else touch $notename - $QUICK_NOTES_EDITOR $notename + $QUICK_NOTES_EDITOR ./$notename cd $dir clear echo "Note created in Home/$me/Notes" @@ -219,7 +219,7 @@ function renamenote() { echo "There is another note named '$newnotename' in your Notes folder." else mv $notename $newnotename - clear; + clear echo "Note renamed from $notename to $newnotename in Home/$me/Notes" echo "-------------------------------------------------------------" fi