aboutsummaryrefslogtreecommitdiffstats
path: root/notes.sh
diff options
context:
space:
mode:
Diffstat (limited to 'notes.sh')
-rwxr-xr-xnotes.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/notes.sh b/notes.sh
index 232effa..87b8a77 100755
--- a/notes.sh
+++ b/notes.sh
@@ -640,26 +640,31 @@ while true; do
exit
;;
-a | --add )
+ TITLE=$2
shift 2
addnote "$TITLE"
exit
;;
-e | --edit )
+ NOTE=$2
shift 2
editnote "$NOTE"
exit
;;
-d | --delete )
+ NOTE=$2
shift 2
rmnote "$NOTE"
exit
;;
-s | --show )
+ NOTE=$2
shift 2
shownote "$NOTE"
exit
;;
-r | --restore )
+ RDIR=$2
shift 2
backup_restore $RDIR
exit
@@ -682,6 +687,7 @@ while true; do
exit
;;
--backup )
+ BDIR=$2
shift 2
backup_data $BDIR
exit