fixed issue that prevented the script from reading input from command line.
authordanix <danix@danix.xyz>
Wed, 26 Apr 2023 14:02:40 +0000 (16:02 +0200)
committerdanix <danix@danix.xyz>
Wed, 26 Apr 2023 14:02:40 +0000 (16:02 +0200)
SOURCE/main.sh
notes.sh

index 18bebdf..6198adb 100644 (file)
@@ -27,26 +27,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
@@ -69,6 +74,7 @@ while true; do
                        exit
                        ;;
                --backup )
+                       BDIR=$2
                        shift 2
                        backup_data $BDIR
                        exit
index 232effa..87b8a77 100755 (executable)
--- 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