working on the backup and backup restore functionalities.
[bash-notes.git] / SOURCE / main.sh
index da3130a..612200d 100644 (file)
@@ -37,6 +37,7 @@ while true; do
                        esac
                        shift 2
                        addnote "$TITLE"
+                       exit
                ;;
                -e | --edit )
                        case "$2" in
@@ -49,6 +50,7 @@ while true; do
                        esac
                        shift 2
                        editnote "$NOTE"
+                       exit
                        ;;
                -d | --delete )
                        case "$2" in
@@ -61,6 +63,7 @@ while true; do
                        esac
                        shift 2
                        rmnote "$NOTE"
+                       exit
                        ;;
                -s | --show )
                        case "$2" in
@@ -73,6 +76,7 @@ while true; do
                        esac
                        shift 2
                        shownote "$NOTE"
+                       exit
                        ;;
                --userconf )
                        export_config
@@ -81,6 +85,19 @@ while true; do
                        # shellcheck disable=SC2317
                        exit
                        ;;
+               --backup )
+                       case "$2" in
+                               '' )
+                                       read -r -p "Backup Dir: " BDIR
+                                       ;;
+                               * )
+                                       BDIR=$2
+                                       ;;
+                       esac
+                       shift 2
+                       backup_data $BDIR
+                       exit
+                       ;;
                -- )
                        shift
                        break
@@ -90,7 +107,3 @@ while true; do
                        ;;
        esac
 done
-
-if [ -z $1 ]; then
-       helptext
-fi