1restic backup(1) restic backup(1)
2
3
4
6 restic-dump - Print a backed-up file to stdout
7
8
9
11 restic dump [flags] snapshotID file
12
13
14
16 The "dump" command extracts a single file from a snapshot from the
17 repository and prints its contents to stdout.
18
19
20 The special snapshot "latest" can be used to use the latest snapshot in
21 the repository.
22
23
24
26 -h, --help[=false]
27 help for dump
28
29
30 -H, --host=""
31 only consider snapshots for this host when the snapshot ID is
32 "latest"
33
34
35 --path=[]
36 only consider snapshots which include this (absolute) path for
37 snapshot ID "latest"
38
39
40 --tag=[]
41 only consider snapshots which include this taglist for snapshot ID
42 "latest"
43
44
45
47 --cacert=[]
48 file to load root certificates from (default: use system
49 certificates)
50
51
52 --cache-dir=""
53 set the cache directory. (default: use system default cache
54 directory)
55
56
57 --cleanup-cache[=false]
58 auto remove old cache directories
59
60
61 --json[=false]
62 set output mode to JSON for commands that support it
63
64
65 --key-hint=""
66 key ID of key to try decrypting first (default: $RESTIC_KEY_HINT)
67
68
69 --limit-download=0
70 limits downloads to a maximum rate in KiB/s. (default: unlimited)
71
72
73 --limit-upload=0
74 limits uploads to a maximum rate in KiB/s. (default: unlimited)
75
76
77 --no-cache[=false]
78 do not use a local cache
79
80
81 --no-lock[=false]
82 do not lock the repo, this allows some operations on read-only
83 repos
84
85
86 -o, --option=[]
87 set extended option (key=value, can be specified multiple times)
88
89
90 --password-command=""
91 specify a shell command to obtain a password (default:
92 $RESTIC_PASSWORD_COMMAND)
93
94
95 -p, --password-file=""
96 read the repository password from a file (default:
97 $RESTIC_PASSWORD_FILE)
98
99
100 -q, --quiet[=false]
101 do not output comprehensive progress report
102
103
104 -r, --repo=""
105 repository to backup to or restore from (default:
106 $RESTIC_REPOSITORY)
107
108
109 --tls-client-cert=""
110 path to a file containing PEM encoded TLS client certificate and
111 private key
112
113
114 -v, --verbose[=0]
115 be verbose (specify --verbose multiple times or level n)
116
117
118
120 restic(1)
121
122
123
124generated by `restic generate` Jan 2017 restic backup(1)