fixed issue that prevented the script from reading input from command line.
[bash-notes.git] / SOURCE / main.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