shellnotes/util/delnote.sh

36 lines
792 B
Bash
Raw Normal View History

2021-02-08 15:29:47 +01:00
:<<'info'
shellnotes - delnote.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 delnote() {
if [ $# -eq 0 ]; then
echo -n "Enter the name of the note you want to delete: " && read delete
else
delete=$1
fi
if [[ $1 == "-all" ]]; then
cd $DEFAULT_PATH
rm -f *
clear
2021-04-19 21:20:01 +02:00
cd $DIR
str="All files deleted from $DEFAULT_PATH"
2021-02-08 15:29:47 +01:00
underlines=$(echo "$str" | tr -c '\010' '-')
echo "$str\n$underlines"
else
cd $DEFAULT_PATH
if [ -e $delete ]; then
rm $delete
clear
2021-04-19 21:20:01 +02:00
cd $DIR
str="Note deleted from $DEFAULT_PATH"
2021-02-08 15:29:47 +01:00
underlines=$(echo "$str" | tr -c '\010' '-')
echo "$str\n$underlines"
else
echo "No such file."
2021-04-19 21:20:01 +02:00
cd $DIR
2021-02-08 15:29:47 +01:00
fi
fi
}