Clarify borgmatic restore example with no leading slash.

This commit is contained in:
Dan Helfman 2019-10-28 12:00:54 -07:00
parent 4dc4fe0b8d
commit f055f5dea8
1 changed files with 5 additions and 2 deletions

View File

@ -55,10 +55,13 @@ everything from an archive. To do that, tack on one or more `--restore-path`
values. For instance:
```bash
borgmatic extract --archive host-2019-... --restore-path /path/1 /path/2
borgmatic extract --archive host-2019-... --restore-path path/1 path/2
```
Like a whole-archive restore, this also restores into the current directory.
Note that the specified restore paths should not have a leading slash. Like a
whole-archive restore, this also restores into the current directory. So for
example, if you happen to be in the directory `/var` and you run the `extract`
command above, borgmatic will restore `/var/path/1` and `/var/path/2`.
## Related documentation