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

View File

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