Sync SYNOPSIS and usage() string.

This commit is contained in:
Philippe Charnier 2000-03-26 14:46:41 +00:00
parent e91b5c5294
commit 34398e2d9b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58616
2 changed files with 5 additions and 4 deletions

View File

@ -44,14 +44,15 @@
.Sh SYNOPSIS
.Nm
.Ar command
.Op Ar arg ...
.Op Ar arguments
.Sh DESCRIPTION
The
.Nm
utility invokes
.Ar command
with
its arguments
its
.Ar arguments
and at this time sets the signal
.Dv SIGHUP
to be ignored.
@ -78,7 +79,7 @@ Consult the
manual page.
.Sh ENVIRONMENT
The following variable is utilized by
.Nm nohup .
.Nm Ns :
.Bl -tag -width flag
.It Ev HOME
If the output file

View File

@ -118,6 +118,6 @@ dupit: (void)lseek(fd, (off_t)0, SEEK_END);
void
usage()
{
(void)fprintf(stderr, "usage: nohup command\n");
(void)fprintf(stderr, "usage: nohup command [arguments]\n");
exit(1);
}