diff --git a/doc/bash-completion.sh b/doc/bash-completion.sh index 44221554e..e691af363 100644 --- a/doc/bash-completion.sh +++ b/doc/bash-completion.sh @@ -2156,6 +2156,70 @@ _restic_repair_index() noun_aliases=() } +_restic_repair_packs() +{ + last_command="restic_repair_packs" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + flags+=("--help") + flags+=("-h") + local_nonpersistent_flags+=("--help") + local_nonpersistent_flags+=("-h") + flags+=("--cacert=") + two_word_flags+=("--cacert") + flags+=("--cache-dir=") + two_word_flags+=("--cache-dir") + flags+=("--cleanup-cache") + flags+=("--compression=") + two_word_flags+=("--compression") + flags+=("--insecure-tls") + flags+=("--json") + flags+=("--key-hint=") + two_word_flags+=("--key-hint") + flags+=("--limit-download=") + two_word_flags+=("--limit-download") + flags+=("--limit-upload=") + two_word_flags+=("--limit-upload") + flags+=("--no-cache") + flags+=("--no-lock") + flags+=("--option=") + two_word_flags+=("--option") + two_word_flags+=("-o") + flags+=("--pack-size=") + two_word_flags+=("--pack-size") + flags+=("--password-command=") + two_word_flags+=("--password-command") + flags+=("--password-file=") + two_word_flags+=("--password-file") + two_word_flags+=("-p") + flags+=("--quiet") + flags+=("-q") + flags+=("--repo=") + two_word_flags+=("--repo") + two_word_flags+=("-r") + flags+=("--repository-file=") + two_word_flags+=("--repository-file") + flags+=("--retry-lock=") + two_word_flags+=("--retry-lock") + flags+=("--tls-client-cert=") + two_word_flags+=("--tls-client-cert") + flags+=("--verbose") + flags+=("-v") + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + _restic_repair_snapshots() { last_command="restic_repair_snapshots" @@ -2249,6 +2313,7 @@ _restic_repair() commands=() commands+=("help") commands+=("index") + commands+=("packs") commands+=("snapshots") flags=() diff --git a/doc/man/restic-backup.1 b/doc/man/restic-backup.1 index a07d19434..c3bccdfa5 100644 --- a/doc/man/restic-backup.1 +++ b/doc/man/restic-backup.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -31,7 +31,7 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB-e\fP, \fB--exclude\fP=[] - exclude a \fB\fCpattern\fR (can be specified multiple times) + exclude a \fBpattern\fR (can be specified multiple times) .PP \fB--exclude-caches\fP[=false] @@ -39,27 +39,27 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB--exclude-file\fP=[] - read exclude patterns from a \fB\fCfile\fR (can be specified multiple times) + read exclude patterns from a \fBfile\fR (can be specified multiple times) .PP \fB--exclude-if-present\fP=[] - takes \fB\fCfilename[:header]\fR, exclude contents of directories containing filename (except filename itself) if header of that file is as provided (can be specified multiple times) + takes \fBfilename[:header]\fR, exclude contents of directories containing filename (except filename itself) if header of that file is as provided (can be specified multiple times) .PP \fB--exclude-larger-than\fP="" - max \fB\fCsize\fR of the files to be backed up (allowed suffixes: k/K, m/M, g/G, t/T) + max \fBsize\fR of the files to be backed up (allowed suffixes: k/K, m/M, g/G, t/T) .PP \fB--files-from\fP=[] - read the files to backup from \fB\fCfile\fR (can be combined with file args; can be specified multiple times) + read the files to backup from \fBfile\fR (can be combined with file args; can be specified multiple times) .PP \fB--files-from-raw\fP=[] - read the files to backup from \fB\fCfile\fR (can be combined with file args; can be specified multiple times) + read the files to backup from \fBfile\fR (can be combined with file args; can be specified multiple times) .PP \fB--files-from-verbatim\fP=[] - read the files to backup from \fB\fCfile\fR (can be combined with file args; can be specified multiple times) + read the files to backup from \fBfile\fR (can be combined with file args; can be specified multiple times) .PP \fB-f\fP, \fB--force\fP[=false] @@ -67,7 +67,7 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB-g\fP, \fB--group-by\fP=host,paths - \fB\fCgroup\fR snapshots by host, paths and/or tags, separated by comma (disable grouping with '') + \fBgroup\fR snapshots by host, paths and/or tags, separated by comma (disable grouping with '') .PP \fB-h\fP, \fB--help\fP[=false] @@ -75,15 +75,15 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB-H\fP, \fB--host\fP="" - set the \fB\fChostname\fR for the snapshot manually. To prevent an expensive rescan use the "parent" flag + set the \fBhostname\fR for the snapshot manually. To prevent an expensive rescan use the "parent" flag .PP \fB--iexclude\fP=[] - same as --exclude \fB\fCpattern\fR but ignores the casing of filenames + same as --exclude \fBpattern\fR but ignores the casing of filenames .PP \fB--iexclude-file\fP=[] - same as --exclude-file but ignores casing of \fB\fCfile\fRnames in patterns + same as --exclude-file but ignores casing of \fBfile\fRnames in patterns .PP \fB--ignore-ctime\fP[=false] @@ -103,11 +103,11 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB--parent\fP="" - use this parent \fB\fCsnapshot\fR (default: latest snapshot in the group determined by --group-by and not newer than the timestamp determined by --time) + use this parent \fBsnapshot\fR (default: latest snapshot in the group determined by --group-by and not newer than the timestamp determined by --time) .PP \fB--read-concurrency\fP=0 - read \fB\fCn\fR files concurrently (default: $RESTIC_READ_CONCURRENCY or 2) + read \fBn\fR files concurrently (default: $RESTIC_READ_CONCURRENCY or 2) .PP \fB--stdin\fP[=false] @@ -115,15 +115,15 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB--stdin-filename\fP="stdin" - \fB\fCfilename\fR to use when reading from stdin + \fBfilename\fR to use when reading from stdin .PP \fB--tag\fP=[] - add \fB\fCtags\fR for the new snapshot in the format \fB\fCtag[,tag,...]\fR (can be specified multiple times) + add \fBtags\fR for the new snapshot in the format \fBtag[,tag,...]\fR (can be specified multiple times) .PP \fB--time\fP="" - \fB\fCtime\fR of the backup (ex. '2012-11-01 22:08:41') (default: now) + \fBtime\fR of the backup (ex. '2012-11-01 22:08:41') (default: now) .PP \fB--with-atime\fP[=false] @@ -133,11 +133,11 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -157,15 +157,15 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -177,19 +177,19 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -197,11 +197,11 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -209,7 +209,7 @@ Exit status is 3 if some source data could not be read (incomplete snapshot crea .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-cache.1 b/doc/man/restic-cache.1 index a6ae75e31..3ae27ea57 100644 --- a/doc/man/restic-cache.1 +++ b/doc/man/restic-cache.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -32,7 +32,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--max-age\fP=30 - max age in \fB\fCdays\fR for cache directories to be considered old + max age in \fBdays\fR for cache directories to be considered old .PP \fB--no-size\fP[=false] @@ -42,11 +42,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -66,15 +66,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -86,19 +86,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -106,11 +106,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -118,7 +118,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-cat.1 b/doc/man/restic-cat.1 index 08170582d..c1df138aa 100644 --- a/doc/man/restic-cat.1 +++ b/doc/man/restic-cat.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -30,11 +30,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -54,15 +54,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -74,19 +74,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -94,11 +94,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -106,7 +106,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-check.1 b/doc/man/restic-check.1 index 0f7a594cd..17eb972bc 100644 --- a/doc/man/restic-check.1 +++ b/doc/man/restic-check.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -37,7 +37,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--read-data-subset\fP="" - read a \fB\fCsubset\fR of data packs, specified as 'n/t' for specific part, or either 'x%' or 'x.y%' or a size in bytes with suffixes k/K, m/M, g/G, t/T for a random subset + read a \fBsubset\fR of data packs, specified as 'n/t' for specific part, or either 'x%' or 'x.y%' or a size in bytes with suffixes k/K, m/M, g/G, t/T for a random subset .PP \fB--with-cache\fP[=false] @@ -47,11 +47,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -71,15 +71,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -91,19 +91,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -111,11 +111,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -123,7 +123,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-copy.1 b/doc/man/restic-copy.1 index 1dbfae0f3..be8f21e25 100644 --- a/doc/man/restic-copy.1 +++ b/doc/man/restic-copy.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -37,19 +37,19 @@ new destination repository using the "init" command. .PP \fB--from-password-command\fP="" - shell \fB\fCcommand\fR to obtain the source repository password from (default: $RESTIC_FROM_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the source repository password from (default: $RESTIC_FROM_PASSWORD_COMMAND) .PP \fB--from-password-file\fP="" - \fB\fCfile\fR to read the source repository password from (default: $RESTIC_FROM_PASSWORD_FILE) + \fBfile\fR to read the source repository password from (default: $RESTIC_FROM_PASSWORD_FILE) .PP \fB--from-repo\fP="" - source \fB\fCrepository\fR to copy snapshots from (default: $RESTIC_FROM_REPOSITORY) + source \fBrepository\fR to copy snapshots from (default: $RESTIC_FROM_REPOSITORY) .PP \fB--from-repository-file\fP="" - \fB\fCfile\fR from which to read the source repository location to copy snapshots from (default: $RESTIC_FROM_REPOSITORY_FILE) + \fBfile\fR from which to read the source repository location to copy snapshots from (default: $RESTIC_FROM_REPOSITORY_FILE) .PP \fB-h\fP, \fB--help\fP[=false] @@ -57,25 +57,25 @@ new destination repository using the "init" command. .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -95,15 +95,15 @@ new destination repository using the "init" command. .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -115,19 +115,19 @@ new destination repository using the "init" command. .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -135,11 +135,11 @@ new destination repository using the "init" command. .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -147,7 +147,7 @@ new destination repository using the "init" command. .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-diff.1 b/doc/man/restic-diff.1 index 15f7c6b9f..a01a2562b 100644 --- a/doc/man/restic-diff.1 +++ b/doc/man/restic-diff.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -8,7 +8,7 @@ restic-diff - Show differences between two snapshots .SH SYNOPSIS .PP -\fBrestic diff [flags] snapshot-ID snapshot-ID\fP +\fBrestic diff [flags] snapshotID snapshotID\fP .SH DESCRIPTION @@ -31,6 +31,11 @@ T The type was changed, e.g. a file was made a symlink .RE +.PP +To only compare files in specific subfolders, you can use the +":" syntax, where "subfolder" is a path within the +snapshot. + .SH EXIT STATUS .PP @@ -50,11 +55,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -74,15 +79,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -94,19 +99,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -114,11 +119,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -126,7 +131,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-dump.1 b/doc/man/restic-dump.1 index d06800e4b..6fa1f8200 100644 --- a/doc/man/restic-dump.1 +++ b/doc/man/restic-dump.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -19,9 +19,14 @@ as a tar (default) or zip file containing the contents of the specified folder. Pass "/" as file name to dump the whole snapshot as an archive file. .PP -The special snapshot "latest" can be used to use the latest snapshot in the +The special snapshotID "latest" can be used to use the latest snapshot in the repository. +.PP +To include the folder content at the root of the archive, you can use the +":" syntax, where "subfolder" is a path within the +snapshot. + .SH EXIT STATUS .PP @@ -31,7 +36,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS .PP \fB-a\fP, \fB--archive\fP="tar" - set archive \fB\fCformat\fR as "tar" or "zip" + set archive \fBformat\fR as "tar" or "zip" .PP \fB-h\fP, \fB--help\fP[=false] @@ -39,25 +44,25 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots for this \fBhost\fR, when snapshot ID "latest" is given (can be specified multiple times) .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR, when snapshot ID "latest" is given (can be specified multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR, when snapshot ID "latest" is given (can be specified multiple times) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -77,15 +82,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -97,19 +102,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -117,11 +122,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -129,7 +134,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-find.1 b/doc/man/restic-find.1 index 5038a72e7..72bc3a0b6 100644 --- a/doc/man/restic-find.1 +++ b/doc/man/restic-find.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -29,7 +29,7 @@ It can also be used to search for restic blobs or trees for troubleshooting. .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--human-readable\fP[=false] @@ -57,7 +57,7 @@ It can also be used to search for restic blobs or trees for troubleshooting. .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB--show-pack-id\fP[=false] @@ -65,11 +65,11 @@ It can also be used to search for restic blobs or trees for troubleshooting. .PP \fB-s\fP, \fB--snapshot\fP=[] - snapshot \fB\fCid\fR to search in (can be given multiple times) + snapshot \fBid\fR to search in (can be given multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .PP \fB--tree\fP[=false] @@ -79,11 +79,11 @@ It can also be used to search for restic blobs or trees for troubleshooting. .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -103,15 +103,15 @@ It can also be used to search for restic blobs or trees for troubleshooting. .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -123,19 +123,19 @@ It can also be used to search for restic blobs or trees for troubleshooting. .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -143,11 +143,11 @@ It can also be used to search for restic blobs or trees for troubleshooting. .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -155,7 +155,7 @@ It can also be used to search for restic blobs or trees for troubleshooting. .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] @@ -163,10 +163,7 @@ It can also be used to search for restic blobs or trees for troubleshooting. .SH EXAMPLE -.PP -.RS - -.nf +.EX restic find config.json restic find --json "*.yml" "*.json" restic find --json --blob 420f620f b46ebe8a ddd38656 @@ -180,8 +177,7 @@ EXIT STATUS Exit status is 0 if the command was successful, and non-zero if there was any error. -.fi -.RE +.EE .SH SEE ALSO diff --git a/doc/man/restic-forget.1 b/doc/man/restic-forget.1 index 6920d1bba..757022a21 100644 --- a/doc/man/restic-forget.1 +++ b/doc/man/restic-forget.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -35,67 +35,67 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS .PP \fB-l\fP, \fB--keep-last\fP=0 - keep the last \fB\fCn\fR snapshots (use 'unlimited' to keep all snapshots) + keep the last \fBn\fR snapshots (use 'unlimited' to keep all snapshots) .PP \fB-H\fP, \fB--keep-hourly\fP=0 - keep the last \fB\fCn\fR hourly snapshots (use 'unlimited' to keep all hourly snapshots) + keep the last \fBn\fR hourly snapshots (use 'unlimited' to keep all hourly snapshots) .PP \fB-d\fP, \fB--keep-daily\fP=0 - keep the last \fB\fCn\fR daily snapshots (use 'unlimited' to keep all daily snapshots) + keep the last \fBn\fR daily snapshots (use 'unlimited' to keep all daily snapshots) .PP \fB-w\fP, \fB--keep-weekly\fP=0 - keep the last \fB\fCn\fR weekly snapshots (use 'unlimited' to keep all weekly snapshots) + keep the last \fBn\fR weekly snapshots (use 'unlimited' to keep all weekly snapshots) .PP \fB-m\fP, \fB--keep-monthly\fP=0 - keep the last \fB\fCn\fR monthly snapshots (use 'unlimited' to keep all monthly snapshots) + keep the last \fBn\fR monthly snapshots (use 'unlimited' to keep all monthly snapshots) .PP \fB-y\fP, \fB--keep-yearly\fP=0 - keep the last \fB\fCn\fR yearly snapshots (use 'unlimited' to keep all yearly snapshots) + keep the last \fBn\fR yearly snapshots (use 'unlimited' to keep all yearly snapshots) .PP \fB--keep-within\fP= - keep snapshots that are newer than \fB\fCduration\fR (eg. 1y5m7d2h) relative to the latest snapshot + keep snapshots that are newer than \fBduration\fR (eg. 1y5m7d2h) relative to the latest snapshot .PP \fB--keep-within-hourly\fP= - keep hourly snapshots that are newer than \fB\fCduration\fR (eg. 1y5m7d2h) relative to the latest snapshot + keep hourly snapshots that are newer than \fBduration\fR (eg. 1y5m7d2h) relative to the latest snapshot .PP \fB--keep-within-daily\fP= - keep daily snapshots that are newer than \fB\fCduration\fR (eg. 1y5m7d2h) relative to the latest snapshot + keep daily snapshots that are newer than \fBduration\fR (eg. 1y5m7d2h) relative to the latest snapshot .PP \fB--keep-within-weekly\fP= - keep weekly snapshots that are newer than \fB\fCduration\fR (eg. 1y5m7d2h) relative to the latest snapshot + keep weekly snapshots that are newer than \fBduration\fR (eg. 1y5m7d2h) relative to the latest snapshot .PP \fB--keep-within-monthly\fP= - keep monthly snapshots that are newer than \fB\fCduration\fR (eg. 1y5m7d2h) relative to the latest snapshot + keep monthly snapshots that are newer than \fBduration\fR (eg. 1y5m7d2h) relative to the latest snapshot .PP \fB--keep-within-yearly\fP= - keep yearly snapshots that are newer than \fB\fCduration\fR (eg. 1y5m7d2h) relative to the latest snapshot + keep yearly snapshots that are newer than \fBduration\fR (eg. 1y5m7d2h) relative to the latest snapshot .PP \fB--keep-tag\fP=[] - keep snapshots with this \fB\fCtaglist\fR (can be specified multiple times) + keep snapshots with this \fBtaglist\fR (can be specified multiple times) .PP \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB-c\fP, \fB--compact\fP[=false] @@ -103,7 +103,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-g\fP, \fB--group-by\fP=host,paths - \fB\fCgroup\fR snapshots by host, paths and/or tags, separated by comma (disable grouping with '') + \fBgroup\fR snapshots by host, paths and/or tags, separated by comma (disable grouping with '') .PP \fB-n\fP, \fB--dry-run\fP[=false] @@ -115,11 +115,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--max-unused\fP="5%" - tolerate given \fB\fClimit\fR of unused data (absolute value in bytes with suffixes k/K, m/M, g/G, t/T, a value in % or the word 'unlimited') + tolerate given \fBlimit\fR of unused data (absolute value in bytes with suffixes k/K, m/M, g/G, t/T, a value in % or the word 'unlimited') .PP \fB--max-repack-size\fP="" - maximum \fB\fCsize\fR to repack (allowed suffixes: k/K, m/M, g/G, t/T) + maximum \fBsize\fR to repack (allowed suffixes: k/K, m/M, g/G, t/T) .PP \fB--repack-cacheable-only\fP[=false] @@ -141,11 +141,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -165,15 +165,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -185,19 +185,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -205,11 +205,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -217,7 +217,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-generate.1 b/doc/man/restic-generate.1 index a557ebd9a..aef3a5e55 100644 --- a/doc/man/restic-generate.1 +++ b/doc/man/restic-generate.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -25,11 +25,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS .PP \fB--bash-completion\fP="" - write bash completion \fB\fCfile\fR + write bash completion \fBfile\fR .PP \fB--fish-completion\fP="" - write fish completion \fB\fCfile\fR + write fish completion \fBfile\fR .PP \fB-h\fP, \fB--help\fP[=false] @@ -37,25 +37,25 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--man\fP="" - write man pages to \fB\fCdirectory\fR + write man pages to \fBdirectory\fR .PP \fB--powershell-completion\fP="" - write powershell completion \fB\fCfile\fR + write powershell completion \fBfile\fR .PP \fB--zsh-completion\fP="" - write zsh completion \fB\fCfile\fR + write zsh completion \fBfile\fR .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -75,15 +75,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -95,19 +95,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -115,11 +115,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -127,7 +127,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-init.1 b/doc/man/restic-init.1 index 7916b6162..27d7f5874 100644 --- a/doc/man/restic-init.1 +++ b/doc/man/restic-init.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -32,19 +32,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--from-password-command\fP="" - shell \fB\fCcommand\fR to obtain the source repository password from (default: $RESTIC_FROM_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the source repository password from (default: $RESTIC_FROM_PASSWORD_COMMAND) .PP \fB--from-password-file\fP="" - \fB\fCfile\fR to read the source repository password from (default: $RESTIC_FROM_PASSWORD_FILE) + \fBfile\fR to read the source repository password from (default: $RESTIC_FROM_PASSWORD_FILE) .PP \fB--from-repo\fP="" - source \fB\fCrepository\fR to copy chunker parameters from (default: $RESTIC_FROM_REPOSITORY) + source \fBrepository\fR to copy chunker parameters from (default: $RESTIC_FROM_REPOSITORY) .PP \fB--from-repository-file\fP="" - \fB\fCfile\fR from which to read the source repository location to copy chunker parameters from (default: $RESTIC_FROM_REPOSITORY_FILE) + \fBfile\fR from which to read the source repository location to copy chunker parameters from (default: $RESTIC_FROM_REPOSITORY_FILE) .PP \fB-h\fP, \fB--help\fP[=false] @@ -58,11 +58,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -82,15 +82,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -102,19 +102,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -122,11 +122,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -134,7 +134,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-key.1 b/doc/man/restic-key.1 index a5e7a5421..855ef5443 100644 --- a/doc/man/restic-key.1 +++ b/doc/man/restic-key.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -32,7 +32,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--new-password-file\fP="" - \fB\fCfile\fR from which to read the new password + \fBfile\fR from which to read the new password .PP \fB--user\fP="" @@ -42,11 +42,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -66,15 +66,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -86,19 +86,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -106,11 +106,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -118,7 +118,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-list.1 b/doc/man/restic-list.1 index 48ca94274..95eeac5f7 100644 --- a/doc/man/restic-list.1 +++ b/doc/man/restic-list.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -30,11 +30,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -54,15 +54,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -74,19 +74,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -94,11 +94,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -106,7 +106,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-ls.1 b/doc/man/restic-ls.1 index 1df321132..0cd0f5a88 100644 --- a/doc/man/restic-ls.1 +++ b/doc/man/restic-ls.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -43,7 +43,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots for this \fBhost\fR, when snapshot ID "latest" is given (can be specified multiple times) .PP \fB--human-readable\fP[=false] @@ -55,7 +55,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR, when snapshot ID "latest" is given (can be specified multiple times) .PP \fB--recursive\fP[=false] @@ -63,17 +63,17 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR, when snapshot ID "latest" is given (can be specified multiple times) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -93,15 +93,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -113,19 +113,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -133,11 +133,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -145,7 +145,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-migrate.1 b/doc/man/restic-migrate.1 index 63aa784ea..eca0ef8e1 100644 --- a/doc/man/restic-migrate.1 +++ b/doc/man/restic-migrate.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -36,11 +36,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -60,15 +60,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -80,19 +80,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -100,11 +100,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -112,7 +112,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-mount.1 b/doc/man/restic-mount.1 index a6ffa2d67..33c016ffa 100644 --- a/doc/man/restic-mount.1 +++ b/doc/man/restic-mount.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -26,26 +26,18 @@ you can pass a time template via --time-template and path templates via .PP Example time template without colons: -.PP -.RS - -.nf +.EX --time-template "2006-01-02_15-04-05" -.fi -.RE +.EE .PP You need to specify a sample format for exactly the following timestamp: -.PP -.RS - -.nf +.EX Mon Jan 2 15:04:05 -0700 MST 2006 -.fi -.RE +.EE .PP For details please see the documentation for time.Format() at: @@ -84,7 +76,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--no-default-permissions\fP[=false] @@ -96,29 +88,29 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB--path-template\fP=[] - set \fB\fCtemplate\fR for path names (can be specified multiple times) + set \fBtemplate\fR for path names (can be specified multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .PP \fB--time-template\fP="2006-01-02T15:04:05Z07:00" - set \fB\fCtemplate\fR to use for times + set \fBtemplate\fR to use for times .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -138,15 +130,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -158,19 +150,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -178,11 +170,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -190,7 +182,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-prune.1 b/doc/man/restic-prune.1 index 7f01a1e8f..e4a32cac3 100644 --- a/doc/man/restic-prune.1 +++ b/doc/man/restic-prune.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -33,11 +33,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--max-repack-size\fP="" - maximum \fB\fCsize\fR to repack (allowed suffixes: k/K, m/M, g/G, t/T) + maximum \fBsize\fR to repack (allowed suffixes: k/K, m/M, g/G, t/T) .PP \fB--max-unused\fP="5%" - tolerate given \fB\fClimit\fR of unused data (absolute value in bytes with suffixes k/K, m/M, g/G, t/T, a value in % or the word 'unlimited') + tolerate given \fBlimit\fR of unused data (absolute value in bytes with suffixes k/K, m/M, g/G, t/T, a value in % or the word 'unlimited') .PP \fB--repack-cacheable-only\fP[=false] @@ -59,11 +59,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -83,15 +83,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -103,19 +103,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -123,11 +123,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -135,7 +135,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-recover.1 b/doc/man/restic-recover.1 index 4e9e1c92f..26d2fc7bd 100644 --- a/doc/man/restic-recover.1 +++ b/doc/man/restic-recover.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -32,11 +32,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -56,15 +56,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -76,19 +76,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -96,11 +96,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -108,7 +108,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-repair-index.1 b/doc/man/restic-repair-index.1 index 773f44a42..35e2845b8 100644 --- a/doc/man/restic-repair-index.1 +++ b/doc/man/restic-repair-index.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -35,11 +35,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -59,15 +59,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -79,19 +79,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -99,11 +99,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -111,7 +111,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-repair-packs.1 b/doc/man/restic-repair-packs.1 new file mode 100644 index 000000000..b21211925 --- /dev/null +++ b/doc/man/restic-repair-packs.1 @@ -0,0 +1,122 @@ +.nh +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" + +.SH NAME +.PP +restic-repair-packs - Salvage damaged pack files + + +.SH SYNOPSIS +.PP +\fBrestic repair packs [packIDs...] [flags]\fP + + +.SH DESCRIPTION +.PP +WARNING: The CLI for this command is experimental and will likely change in the future! + +.PP +The "repair packs" command extracts intact blobs from the specified pack files, rebuilds +the index to remove the damaged pack files and removes the pack files from the repository. + + +.SH EXIT STATUS +.PP +Exit status is 0 if the command was successful, and non-zero if there was any error. + + +.SH OPTIONS +.PP +\fB-h\fP, \fB--help\fP[=false] + help for packs + + +.SH OPTIONS INHERITED FROM PARENT COMMANDS +.PP +\fB--cacert\fP=[] + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + +.PP +\fB--cache-dir\fP="" + set the cache \fBdirectory\fR\&. (default: use system default cache directory) + +.PP +\fB--cleanup-cache\fP[=false] + auto remove old cache directories + +.PP +\fB--compression\fP=auto + compression mode (only available for repository format version 2), one of (auto|off|max) (default: $RESTIC_COMPRESSION) + +.PP +\fB--insecure-tls\fP[=false] + skip TLS certificate verification when connecting to the repository (insecure) + +.PP +\fB--json\fP[=false] + set output mode to JSON for commands that support it + +.PP +\fB--key-hint\fP="" + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + +.PP +\fB--limit-download\fP=0 + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) + +.PP +\fB--limit-upload\fP=0 + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) + +.PP +\fB--no-cache\fP[=false] + do not use a local cache + +.PP +\fB--no-lock\fP[=false] + do not lock the repository, this allows some operations on read-only repositories + +.PP +\fB-o\fP, \fB--option\fP=[] + set extended option (\fBkey=value\fR, can be specified multiple times) + +.PP +\fB--pack-size\fP=0 + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + +.PP +\fB--password-command\fP="" + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + +.PP +\fB-p\fP, \fB--password-file\fP="" + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + +.PP +\fB-q\fP, \fB--quiet\fP[=false] + do not output comprehensive progress report + +.PP +\fB-r\fP, \fB--repo\fP="" + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + +.PP +\fB--repository-file\fP="" + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + +.PP +\fB--retry-lock\fP=0s + retry to lock the repository if it is already locked, takes a value like 5m or 2h (default: no retries) + +.PP +\fB--tls-client-cert\fP="" + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + +.PP +\fB-v\fP, \fB--verbose\fP[=0] + be verbose (specify multiple times or a level using --verbose=n``, max level/times is 2) + + +.SH SEE ALSO +.PP +\fBrestic-repair(1)\fP diff --git a/doc/man/restic-repair-snapshots.1 b/doc/man/restic-repair-snapshots.1 index 45acf8e7b..f59067f05 100644 --- a/doc/man/restic-repair-snapshots.1 +++ b/doc/man/restic-repair-snapshots.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -55,25 +55,25 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -93,15 +93,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -113,19 +113,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -133,11 +133,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -145,7 +145,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-repair.1 b/doc/man/restic-repair.1 index e1e0520c6..dbe783df4 100644 --- a/doc/man/restic-repair.1 +++ b/doc/man/restic-repair.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -25,11 +25,11 @@ Repair the repository .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -49,15 +49,15 @@ Repair the repository .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -69,19 +69,19 @@ Repair the repository .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -89,11 +89,11 @@ Repair the repository .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -101,7 +101,7 @@ Repair the repository .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] @@ -110,4 +110,4 @@ Repair the repository .SH SEE ALSO .PP -\fBrestic(1)\fP, \fBrestic-repair-index(1)\fP, \fBrestic-repair-snapshots(1)\fP +\fBrestic(1)\fP, \fBrestic-repair-index(1)\fP, \fBrestic-repair-packs(1)\fP, \fBrestic-repair-snapshots(1)\fP diff --git a/doc/man/restic-restore.1 b/doc/man/restic-restore.1 index 6abc8d5aa..d8c1b72e1 100644 --- a/doc/man/restic-restore.1 +++ b/doc/man/restic-restore.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -17,9 +17,13 @@ The "restore" command extracts the data from a snapshot from the repository to a directory. .PP -The special snapshot "latest" can be used to restore the latest snapshot in the +The special snapshotID "latest" can be used to restore the latest snapshot in the repository. +.PP +To only restore a specific subfolder, you can use the ":" +syntax, where "subfolder" is a path within the snapshot. + .SH EXIT STATUS .PP @@ -29,7 +33,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS .PP \fB-e\fP, \fB--exclude\fP=[] - exclude a \fB\fCpattern\fR (can be specified multiple times) + exclude a \fBpattern\fR (can be specified multiple times) .PP \fB-h\fP, \fB--help\fP[=false] @@ -37,23 +41,23 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots for this \fBhost\fR, when snapshot ID "latest" is given (can be specified multiple times) .PP \fB--iexclude\fP=[] - same as \fB\fC--exclude\fR but ignores the casing of filenames + same as --exclude but ignores the casing of \fBpattern\fR .PP \fB--iinclude\fP=[] - same as \fB\fC--include\fR but ignores the casing of filenames + same as --include but ignores the casing of \fBpattern\fR .PP \fB-i\fP, \fB--include\fP=[] - include a \fB\fCpattern\fR, exclude everything else (can be specified multiple times) + include a \fBpattern\fR, exclude everything else (can be specified multiple times) .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR, when snapshot ID "latest" is given (can be specified multiple times) .PP \fB--sparse\fP[=false] @@ -61,7 +65,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR, when snapshot ID "latest" is given (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR, when snapshot ID "latest" is given (can be specified multiple times) .PP \fB-t\fP, \fB--target\fP="" @@ -75,11 +79,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -99,15 +103,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -119,19 +123,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -139,11 +143,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -151,7 +155,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-rewrite.1 b/doc/man/restic-rewrite.1 index 30960e577..8a06aef40 100644 --- a/doc/man/restic-rewrite.1 +++ b/doc/man/restic-rewrite.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -45,11 +45,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-e\fP, \fB--exclude\fP=[] - exclude a \fB\fCpattern\fR (can be specified multiple times) + exclude a \fBpattern\fR (can be specified multiple times) .PP \fB--exclude-file\fP=[] - read exclude patterns from a \fB\fCfile\fR (can be specified multiple times) + read exclude patterns from a \fBfile\fR (can be specified multiple times) .PP \fB--forget\fP[=false] @@ -61,33 +61,33 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--iexclude\fP=[] - same as --exclude \fB\fCpattern\fR but ignores the casing of filenames + same as --exclude \fBpattern\fR but ignores the casing of filenames .PP \fB--iexclude-file\fP=[] - same as --exclude-file but ignores casing of \fB\fCfile\fRnames in patterns + same as --exclude-file but ignores casing of \fBfile\fRnames in patterns .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -107,15 +107,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -127,19 +127,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -147,11 +147,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -159,7 +159,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-self-update.1 b/doc/man/restic-self-update.1 index c981b93fe..28fd24a92 100644 --- a/doc/man/restic-self-update.1 +++ b/doc/man/restic-self-update.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -31,17 +31,17 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--output\fP="" - Save the downloaded file as \fB\fCfilename\fR (default: running binary itself) + Save the downloaded file as \fBfilename\fR (default: running binary itself) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -61,15 +61,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -81,19 +81,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -101,11 +101,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -113,7 +113,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-snapshots.1 b/doc/man/restic-snapshots.1 index 9770e42ef..cb34d6c8e 100644 --- a/doc/man/restic-snapshots.1 +++ b/doc/man/restic-snapshots.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -28,7 +28,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-g\fP, \fB--group-by\fP= - \fB\fCgroup\fR snapshots by host, paths and/or tags, separated by comma + \fBgroup\fR snapshots by host, paths and/or tags, separated by comma .PP \fB-h\fP, \fB--help\fP[=false] @@ -36,29 +36,29 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--latest\fP=0 - only show the last \fB\fCn\fR snapshots for each host and path + only show the last \fBn\fR snapshots for each host and path .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -78,15 +78,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -98,19 +98,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -118,11 +118,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -130,7 +130,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-stats.1 b/doc/man/restic-stats.1 index 78b8c94df..cf0374351 100644 --- a/doc/man/restic-stats.1 +++ b/doc/man/restic-stats.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -58,7 +58,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--mode\fP="restore-size" @@ -66,21 +66,21 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -100,15 +100,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -120,19 +120,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -140,11 +140,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -152,7 +152,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-tag.1 b/doc/man/restic-tag.1 index c5cf273b8..162d50d29 100644 --- a/doc/man/restic-tag.1 +++ b/doc/man/restic-tag.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -8,7 +8,7 @@ restic-tag - Modify tags on snapshots .SH SYNOPSIS .PP -\fBrestic tag [flags] [snapshot-ID ...]\fP +\fBrestic tag [flags] [snapshotID ...]\fP .SH DESCRIPTION @@ -20,7 +20,7 @@ You can either set/replace the entire set of tags on a snapshot, or add tags to/remove tags from the existing set. .PP -When no snapshot-ID is given, all snapshots matching the host, tag and path filter criteria are modified. +When no snapshotID is given, all snapshots matching the host, tag and path filter criteria are modified. .SH EXIT STATUS @@ -31,7 +31,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS .PP \fB--add\fP=[] - \fB\fCtags\fR which will be added to the existing tags in the format \fB\fCtag[,tag,...]\fR (can be given multiple times) + \fBtags\fR which will be added to the existing tags in the format \fBtag[,tag,...]\fR (can be given multiple times) .PP \fB-h\fP, \fB--help\fP[=false] @@ -39,33 +39,33 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-H\fP, \fB--host\fP=[] - only consider snapshots for this \fB\fChost\fR (can be specified multiple times) + only consider snapshots for this \fBhost\fR (can be specified multiple times) .PP \fB--path\fP=[] - only consider snapshots including this (absolute) \fB\fCpath\fR (can be specified multiple times) + only consider snapshots including this (absolute) \fBpath\fR (can be specified multiple times) .PP \fB--remove\fP=[] - \fB\fCtags\fR which will be removed from the existing tags in the format \fB\fCtag[,tag,...]\fR (can be given multiple times) + \fBtags\fR which will be removed from the existing tags in the format \fBtag[,tag,...]\fR (can be given multiple times) .PP \fB--set\fP=[] - \fB\fCtags\fR which will replace the existing tags in the format \fB\fCtag[,tag,...]\fR (can be given multiple times) + \fBtags\fR which will replace the existing tags in the format \fBtag[,tag,...]\fR (can be given multiple times) .PP \fB--tag\fP=[] - only consider snapshots including \fB\fCtag[,tag,...]\fR (can be specified multiple times) + only consider snapshots including \fBtag[,tag,...]\fR (can be specified multiple times) .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -85,15 +85,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -105,19 +105,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -125,11 +125,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -137,7 +137,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-unlock.1 b/doc/man/restic-unlock.1 index 3823e747f..0274c56e8 100644 --- a/doc/man/restic-unlock.1 +++ b/doc/man/restic-unlock.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -34,11 +34,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -58,15 +58,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -78,19 +78,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -98,11 +98,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -110,7 +110,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic-version.1 b/doc/man/restic-version.1 index db83e6162..774e19453 100644 --- a/doc/man/restic-version.1 +++ b/doc/man/restic-version.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -31,11 +31,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .SH OPTIONS INHERITED FROM PARENT COMMANDS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -55,15 +55,15 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -75,19 +75,19 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -95,11 +95,11 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -107,7 +107,7 @@ Exit status is 0 if the command was successful, and non-zero if there was any er .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0] diff --git a/doc/man/restic.1 b/doc/man/restic.1 index 9a96533fc..427ce7c65 100644 --- a/doc/man/restic.1 +++ b/doc/man/restic.1 @@ -1,5 +1,5 @@ .nh -.TH "restic backup" "1" "Jan 2017" "generated by \fB\fCrestic generate\fR" "" +.TH "restic backup" "1" "Jan 2017" "generated by \fBrestic generate\fR" "" .SH NAME .PP @@ -23,11 +23,11 @@ The full documentation can be found at https://restic.readthedocs.io/ . .SH OPTIONS .PP \fB--cacert\fP=[] - \fB\fCfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) + \fBfile\fR to load root certificates from (default: use system certificates or $RESTIC_CACERT) .PP \fB--cache-dir\fP="" - set the cache \fB\fCdirectory\fR\&. (default: use system default cache directory) + set the cache \fBdirectory\fR\&. (default: use system default cache directory) .PP \fB--cleanup-cache\fP[=false] @@ -51,15 +51,15 @@ The full documentation can be found at https://restic.readthedocs.io/ . .PP \fB--key-hint\fP="" - \fB\fCkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) + \fBkey\fR ID of key to try decrypting first (default: $RESTIC_KEY_HINT) .PP \fB--limit-download\fP=0 - limits downloads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits downloads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--limit-upload\fP=0 - limits uploads to a maximum \fB\fCrate\fR in KiB/s. (default: unlimited) + limits uploads to a maximum \fBrate\fR in KiB/s. (default: unlimited) .PP \fB--no-cache\fP[=false] @@ -71,19 +71,19 @@ The full documentation can be found at https://restic.readthedocs.io/ . .PP \fB-o\fP, \fB--option\fP=[] - set extended option (\fB\fCkey=value\fR, can be specified multiple times) + set extended option (\fBkey=value\fR, can be specified multiple times) .PP \fB--pack-size\fP=0 - set target pack \fB\fCsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) + set target pack \fBsize\fR in MiB, created pack files may be larger (default: $RESTIC_PACK_SIZE) .PP \fB--password-command\fP="" - shell \fB\fCcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) + shell \fBcommand\fR to obtain the repository password from (default: $RESTIC_PASSWORD_COMMAND) .PP \fB-p\fP, \fB--password-file\fP="" - \fB\fCfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) + \fBfile\fR to read the repository password from (default: $RESTIC_PASSWORD_FILE) .PP \fB-q\fP, \fB--quiet\fP[=false] @@ -91,11 +91,11 @@ The full documentation can be found at https://restic.readthedocs.io/ . .PP \fB-r\fP, \fB--repo\fP="" - \fB\fCrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) + \fBrepository\fR to backup to or restore from (default: $RESTIC_REPOSITORY) .PP \fB--repository-file\fP="" - \fB\fCfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) + \fBfile\fR to read the repository location from (default: $RESTIC_REPOSITORY_FILE) .PP \fB--retry-lock\fP=0s @@ -103,7 +103,7 @@ The full documentation can be found at https://restic.readthedocs.io/ . .PP \fB--tls-client-cert\fP="" - path to a \fB\fCfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) + path to a \fBfile\fR containing PEM encoded TLS client certificate and private key (default: $RESTIC_TLS_CLIENT_CERT) .PP \fB-v\fP, \fB--verbose\fP[=0]