Minor changes and typos

This commit is contained in:
Dimitris Marakomihelakis 2021-01-17 09:53:22 +02:00 committed by GitHub
parent e4bc7e492d
commit e97d5ddc13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ function quickread() {
else else
clear clear
echo "No such note." echo "No such note."
cd ~ cd $dir
fi fi
cd $dir cd $dir
} }
@ -72,7 +72,7 @@ if [ -e $notename ]; then
else else
touch $notename touch $notename
$QUICK_NOTES_EDITOR $notename $QUICK_NOTES_EDITOR ./$notename
cd $dir cd $dir
clear clear
echo "Note created in Home/$me/Notes" echo "Note created in Home/$me/Notes"
@ -219,7 +219,7 @@ function renamenote() {
echo "There is another note named '$newnotename' in your Notes folder." echo "There is another note named '$newnotename' in your Notes folder."
else else
mv $notename $newnotename mv $notename $newnotename
clear; clear
echo "Note renamed from $notename to $newnotename in Home/$me/Notes" echo "Note renamed from $notename to $newnotename in Home/$me/Notes"
echo "-------------------------------------------------------------" echo "-------------------------------------------------------------"
fi fi