From bf0959c953c4c00f6df6dc6c14352fcec5b2ecb2 Mon Sep 17 00:00:00 2001 From: gilbertchen Date: Wed, 11 Oct 2017 23:25:25 -0400 Subject: [PATCH] Updated Quick Start (markdown) --- Quick-Start.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Quick-Start.md b/Quick-Start.md index cf25566..0f72b27 100644 --- a/Quick-Start.md +++ b/Quick-Start.md @@ -34,7 +34,7 @@ $ duplicacy init mywork2 sftp://user@192.168.1.100/path/to/storage # differen $ duplicacy backup ``` -Duplicacy provides a set of commands, such as list, check, diff, cat history, to manage snapshots: +Duplicacy provides a set of commands, such as list, check, diff, cat history, to manage backups: ```makefile @@ -78,6 +78,6 @@ $ duplicacy backup -storage s3 However, backups created this way will be different on different storages, if the repository has been changed during two backup operations. A better approach, is to use the *copy* command to copy specified backups from one storage to another: ```sh -$ duplicacy copy -r 1 -to s3 # Copy snapshot at revision 1 to the s3 storage -$ duplicacy copy -to s3 # Copy every snapshot to the s3 storage +$ duplicacy copy -r 1 -to s3 # Copy backup at revision 1 to the s3 storage +$ duplicacy copy -to s3 # Copy every backup to the s3 storage ```