diff options
author | Jonas Smedegaard <dr@jones.dk> | 2003-01-24 10:55:32 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2003-01-24 10:55:32 +0000 |
commit | 8f6a20fbb52ae53c9c2370790c810d2e68621f78 (patch) | |
tree | 13dfa348b6f610d3cb0e84c87f2e4edefa65b719 | |
parent | 7c5968ba2d9044a36b06e32e9419de3c8cf96362 (diff) |
--verbose does no longer include --stats and --progress.
-rwxr-xr-x | localsyncthis | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/localsyncthis b/localsyncthis index 0f6167a..c5ec4e4 100755 --- a/localsyncthis +++ b/localsyncthis @@ -42,7 +42,8 @@ supersedes earlier ones. If no path specified, current working directory is used." exit 0 ;; - -v|--verbose) V=1; rsync_opts="$rsync_opts --progress --stats";; +# -v|--verbose) V=1; rsync_opts="$rsync_opts --progress --stats";; + -v|--verbose) V=1; rsync_opts="$rsync_opts -v";; --download) action=download;; --upload) action=upload;; --test|--dry-run) rsync_opts="$rsync_opts --dry-run";; |