implemented backup and restore routines
[bash-notes.git] / SOURCE / main.sh
index 612200d..476243b 100644 (file)
@@ -1,5 +1,5 @@
 # shellcheck disable=SC2006
-GOPT=$(getopt -o hvpla::e::d::s:: --long help,version,list,plain,userconf,backup::,add::,edit::,delete::,show:: -n 'bash-notes' -- "$@")
+GOPT=$(getopt -o hvplr::a::e::d::s:: --long help,version,list,plain,userconf,restore::,backup::,add::,edit::,delete::,show:: -n 'bash-notes' -- "$@")
 
 # shellcheck disable=SC2181
 if [ $? != 0 ] ; then helptext >&2 ; exit 1 ; fi
@@ -78,6 +78,19 @@ while true; do
                        shownote "$NOTE"
                        exit
                        ;;
+               -r | --restore )
+                       case "$2" in
+                               '' )
+                                       read -r -p "Backup Dir: " RDIR
+                                       ;;
+                               * )
+                                       RDIR=$2
+                                       ;;
+                       esac
+                       shift 2
+                       backup_restore $RDIR
+                       exit
+                       ;;
                --userconf )
                        export_config
                        # shellcheck disable=SC2317