diff options
author | cjc <cjc@FreeBSD.org> | 2001-10-02 08:24:37 +0000 |
---|---|---|
committer | cjc <cjc@FreeBSD.org> | 2001-10-02 08:24:37 +0000 |
commit | 4a228ca74ef7c8dcb9ecbc408b2a2a47d4fb68cf (patch) | |
tree | d8bd3b08318a42717ba734dc90edfaba524b9141 /sbin | |
parent | 5937a7736901f580204699d25e2f040aa8adbec3 (diff) | |
download | FreeBSD-src-4a228ca74ef7c8dcb9ecbc408b2a2a47d4fb68cf.zip FreeBSD-src-4a228ca74ef7c8dcb9ecbc408b2a2a47d4fb68cf.tar.gz |
Documentation fixes:
- The '-d' option was not documented on the manpage or in the
usage message.
- The '-N' option was not included in the usage.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/restore/main.c | 10 | ||||
-rw-r--r-- | sbin/restore/restore.8 | 12 |
2 files changed, 12 insertions, 10 deletions
diff --git a/sbin/restore/main.c b/sbin/restore/main.c index 7bfe9bb..2980b11 100644 --- a/sbin/restore/main.c +++ b/sbin/restore/main.c @@ -294,11 +294,11 @@ static void usage() { (void)fprintf(stderr, "usage:\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n", - "restore -i [-chkmuvy] [-b blocksize] [-f file] [-s fileno]", - "restore -r [-ckuvy] [-b blocksize] [-f file] [-s fileno]", - "restore -R [-ckuvy] [-b blocksize] [-f file] [-s fileno]", - "restore -x [-chkmuvy] [-b blocksize] [-f file] [-s fileno] [file ...]", - "restore -t [-chkuvy] [-b blocksize] [-f file] [-s fileno] [file ...]"); + "restore -i [-cdhkmNuvy] [-b blocksize] [-f file] [-s fileno]", + "restore -r [-cdkNuvy] [-b blocksize] [-f file] [-s fileno]", + "restore -R [-cdkNuvy] [-b blocksize] [-f file] [-s fileno]", + "restore -x [-cdhkmNuvy] [-b blocksize] [-f file] [-s fileno] [file ...]", + "restore -t [-cdhkNuvy] [-b blocksize] [-f file] [-s fileno] [file ...]"); done(1); } diff --git a/sbin/restore/restore.8 b/sbin/restore/restore.8 index 0a7a84a..9b048a2 100644 --- a/sbin/restore/restore.8 +++ b/sbin/restore/restore.8 @@ -42,32 +42,32 @@ .Sh SYNOPSIS .Nm .Fl i -.Op Fl chkmNuvy +.Op Fl cdhkmNuvy .Op Fl b Ar blocksize .Op Fl f Ar file .Op Fl s Ar fileno .Nm .Fl R -.Op Fl ckNuvy +.Op Fl cdkNuvy .Op Fl b Ar blocksize .Op Fl f Ar file .Op Fl s Ar fileno .Nm .Fl r -.Op Fl ckNuvy +.Op Fl cdkNuvy .Op Fl b Ar blocksize .Op Fl f Ar file .Op Fl s Ar fileno .Nm .Fl t -.Op Fl chkNuvy +.Op Fl cdhkNuvy .Op Fl b Ar blocksize .Op Fl f Ar file .Op Fl s Ar fileno .Op Ar .Nm .Fl x -.Op Fl chkmNuvy +.Op Fl cdhkmNuvy .Op Fl b Ar blocksize .Op Fl f Ar file .Op Fl s Ar fileno @@ -278,6 +278,8 @@ old (pre-4.4) or new format file system. The .Fl c flag disables this check, and only allows reading a dump in the old format. +.It Fl d +Sends verbose debugging output to the standard error. .It Fl f Ar file Read the backup from .Ar file ; |