From a096862ddb4c5e91a922400aae5c8e034feca27a Mon Sep 17 00:00:00 2001 From: capntack Date: Sat, 23 Mar 2024 15:31:24 -0500 Subject: [PATCH] Rewrote some commands to be same formatted and fix a broken one --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 98f1991..5510201 100644 --- a/README.md +++ b/README.md @@ -103,25 +103,25 @@ restic backup --verbose --compression max \ 10. Verify your backup by first fetching the snapshot ID: ```bash -restic -r /path/to/repo snapshots +restic snapshots -r /path/to/repo ``` Then list the files within to verify eveything is there: ```bash -restic ls -r /path/to/repo --long $SNAPSHOT_ID +restic ls --long -r /path/to/repo $SNAPSHOT_ID ``` Then compare the backup size to the size of the source. This will retrieve the uncompressed size of the repo, and it won't perfectly align. But it should give you an idea. ```bash -restic ls -r /path/to/repo stats $SNAPSHOT_ID +restic stats -r /path/to/repo ``` And finally, check the integrity of the repo: ```bash -restic -r /path/to/repo check +restic check -r /path/to/repo ```