From 785c9e4c963e80a8a1e7aa7da28883398a76d226 Mon Sep 17 00:00:00 2001 From: Mike Date: Mon, 5 Aug 2019 00:29:39 -0700 Subject: [PATCH] Updated README --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index be708ba..a33b139 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,16 @@ This script is really just a wrapper around rsync's beautiful functionality. It ## Command Line Arguments * ```--full``` Forces the script to run a *full* backup * ```--differential``` Forces the script to run a *differential* backup +* ```--diff``` Same as ```---differential``` * ```--log-dir ``` Let's you set the log output directory * ```--source-dir ``` Specifies the local source directory +* ```--include ``` Specifies another local source directory to include in the backup +* ```--source-mountpoint ``` Make sure a local mountpoint is mounted before continuing * ```--destination-dir ``` Specifies the backup destination directory +* ```--exclude ``` Specifies a source directory to exclude (can be passed multiple times) * ```--remote-host ``` Specifies the remote host, if your backup destination is an SSH server * ```--remote-user ``` Specifies the remote username to use, if your backup destination is an SSH server * ```--ssh-key ``` Specifies the local SSH key to use for authentication, if your backup destination is an SSH server -* ```--exclude ``` Specifies a source directory to exclude (can be passed multiple times) Note that ```--remote-host```, ```--remote-user```, and ```--ssh-key``` are only needed if your backup destination is a remote SSH server. You may omit all three if the destination is a locally mounted folder.