quicknote: Take a note via terminal

This commit is contained in:
dmarakom6 2021-02-12 18:57:12 +02:00
parent c933544d02
commit 8e24a19a0d

44
util/quicknote.sh Normal file
View file

@ -0,0 +1,44 @@
:<<'info'
shellnotes - quicknote.sh
(C) Dimitris Marakomihelakis
Released under the "All rights reserved" category. See the RIGHTS.txt file
in /docs/github/ for its full text.
info
function quicknote() {
dir="$(pwd)"
me="$(whoami)"
if [ $# -eq 0 ]; then
echo -n "Enter note name: " && read notename
else
notename=$1
fi
cd $DEFAULT_PATH
if [ -e $notename ]; then
clear
echo "This note already exists."
cd ..
echo -n "Do you want to read it?[Y/N]: " && read readquicknote
else
touch $notename
$QUICK_NOTES_EDITOR $notename
cd $dir
clear
str="Note created in $DEFAULT_PATH"
underlines=$(echo "$str" | tr -c '\010' '-')
echo "$str\n$underlines"
fi
case $readquicknote in y|Y|YES|Yes|yes )
clear
cd $DEFAULT_PATH
if [[ -e $notename ]]; then
cat $notename
else
echo "This note is blank."
fi
esac
cd $dir
}