You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autorestic/docs/cli/exec.md

16 lines
463 B

5 years ago
# Exec
```bash
autorestic exec [-b, --backend] [-a, --all] <command> -- [native options]
```
This is avery handy command which enables you to run any native restic command on desired backends. An example would be listing all the snapshots of all your backends:
```bash
autorestic exec -a -- snapshots
```
4 years ago
With `exec` you can basically run every cli command that you would be able to run with the restic cli. It only pre-fills path, key, etc.
5 years ago
> :ToCPrevNext