mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 21:24:11 +01:00
18 lines
304 B
Markdown
18 lines
304 B
Markdown
# Backup
|
|
|
|
```bash
|
|
autorestic backup [-l, --location] [-a, --all]
|
|
```
|
|
|
|
Performs a backup of all locations if the `-a` flag is passed. To only backup some locations pass one or more `-l` or `--location` flags.
|
|
|
|
```bash
|
|
# All
|
|
autorestic backup -a
|
|
|
|
# Some
|
|
autorestic backup -l foo -l bar
|
|
```
|
|
|
|
> :ToCPrevNext
|