shellnotes/util/renamenote.sh
2021-04-19 22:20:01 +03:00

34 lines
No EOL
773 B
Bash

:<<'info'
shellnotes - renamenote.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 renamenote() {
cd $DEFAULT_PATH
if [ $# -eq 0 ]; then
echo -n "Enter note name: " && read notename
echo -n "Enter new name: " && read newnotename
else
notename=$1
newnotename=$2
fi
if [ -e $notename ]; then
if [ -e $newnotename ]; then
echo "There is another note named '$newnotename' in your Notes folder."
else
mv $notename $newnotename
clear
str="Note renamed from $notename to $newnotename in $DEFAULT_PATH"
underlines=$(echo "$str" | tr -c '\010' '-')
echo "$str\n$underlines"
fi
else
echo "This note does not exist."
fi
cd $DIR
}