Document the new -k option in usage message and man page.

This commit is contained in:
Dag-Erling Smørgrav 2001-02-16 16:28:36 +00:00
parent 532c19016b
commit 4c98f36d94
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=72542
2 changed files with 4 additions and 2 deletions

View file

@ -42,7 +42,7 @@
.Nm
.Fl c
.Nm
.Op Fl fvz
.Op Fl fkvz
.Op Fl N Ar system
.Ar directory
.Sh DESCRIPTION
@ -61,6 +61,8 @@ will ignore it.
.It Fl f
Force a dump to be taken even if the dump doesn't appear correct or there
is insufficient disk space.
.It Fl k
Do not clear the dump after saving it.
.It Fl N
Use
.Ar system

View file

@ -765,6 +765,6 @@ Write(fd, bp, size)
void
usage()
{
(void)syslog(LOG_ERR, "usage: savecore [-cfvz] [-N system] directory");
(void)syslog(LOG_ERR, "usage: savecore [-cfkvz] [-N system] directory");
exit(1);
}