aboutsummaryrefslogtreecommitdiffstats
path: root/notes.sh
diff options
context:
space:
mode:
authordanix <danix@danix.xyz>2023-04-26 15:09:39 +0200
committerdanix <danix@danix.xyz>2023-04-26 15:09:39 +0200
commitda52e73a558956d6491c24ccec5f81a05dc1594e (patch)
tree1b9768755ece22fcf1a82a2445b86e4883c16eac /notes.sh
parent3bd93e7f52109ecb0f3fb4ed426de3540d9b6b01 (diff)
downloadbash-notes-da52e73a558956d6491c24ccec5f81a05dc1594e.tar.gz
bash-notes-da52e73a558956d6491c24ccec5f81a05dc1594e.zip
removed redundant query for notes details if not added from command line input.
Diffstat (limited to 'notes.sh')
-rwxr-xr-xnotes.sh66
1 files changed, 4 insertions, 62 deletions
diff --git a/notes.sh b/notes.sh
index 5aa82c2..232effa 100755
--- a/notes.sh
+++ b/notes.sh
@@ -612,7 +612,7 @@ shownote() {
fi
}
# shellcheck disable=SC2006
-GOPT=$(getopt -o hvplr::a::e::d::s:: --long help,version,list,plain,userconf,showconf,sync::,restore::,backup::,add::,edit::,delete::,show:: -n 'bash-notes' -- "$@")
+GOPT=$(getopt -o hvplr:a:e:d:s: --long help,version,list,plain,userconf,showconf,sync,restore:,backup:,add:,edit:,delete:,show: -n 'bash-notes' -- "$@")
# shellcheck disable=SC2181
if [ $? != 0 ] ; then helptext >&2 ; exit 1 ; fi
@@ -640,84 +640,34 @@ while true; do
exit
;;
-a | --add )
- case "$2" in
- '' )
- read -r -p "Title: " TITLE
- ;;
- * )
- TITLE=$2
- ;;
- esac
shift 2
addnote "$TITLE"
exit
;;
-e | --edit )
- case "$2" in
- '' )
- read -r -p "Note ID: " NOTE
- ;;
- * )
- NOTE=$2
- ;;
- esac
shift 2
editnote "$NOTE"
exit
;;
-d | --delete )
- case "$2" in
- '' )
- read -r -p "Note ID: " NOTE
- ;;
- * )
- NOTE=$2
- ;;
- esac
shift 2
rmnote "$NOTE"
exit
;;
-s | --show )
- case "$2" in
- '' )
- read -r -p "Note ID: " NOTE
- ;;
- * )
- NOTE=$2
- ;;
- esac
shift 2
shownote "$NOTE"
exit
;;
-r | --restore )
- case "$2" in
- '' )
- read -r -p "Backup Dir: " RDIR
- ;;
- * )
- RDIR=$2
- ;;
- esac
shift 2
backup_restore $RDIR
exit
;;
--sync )
- case "$2" in
- '' )
- gitsync
- ;;
- '-f' )
- gitsync -f
- ;;
- * )
- helptext
- exit
- ;;
- esac
- shift 2
+ # I'm forcing it because if you run it manually, chances are that you need to.
+ gitsync -f
+ shift
exit
;;
--userconf )
@@ -732,14 +682,6 @@ while true; do
exit
;;
--backup )
- case "$2" in
- '' )
- read -r -p "Backup Dir: " BDIR
- ;;
- * )
- BDIR=$2
- ;;
- esac
shift 2
backup_data $BDIR
exit