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 ```