aboutsummaryrefslogtreecommitdiffstats
path: root/SOURCE
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 /SOURCE
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 'SOURCE')
-rw-r--r--SOURCE/main.sh66
1 files changed, 4 insertions, 62 deletions
diff --git a/SOURCE/main.sh b/SOURCE/main.sh
index eaad776..18bebdf 100644
--- a/SOURCE/main.sh
+++ b/SOURCE/main.sh
@@ -1,5 +1,5 @@
# 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
@@ -27,84 +27,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 )
@@ -119,14 +69,6 @@ while true; do
exit
;;
--backup )
- case "$2" in
- '' )
- read -r -p "Backup Dir: " BDIR
- ;;
- * )
- BDIR=$2
- ;;
- esac
shift 2
backup_data $BDIR
exit