aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/nohup
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>2000-03-26 14:46:41 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>2000-03-26 14:46:41 +0000
commit34398e2d9be9501c207de8409b36f4eb39f3e9de (patch)
treea313fecb1169ff71db2b1e6027fbe6360308cbb8 /usr.bin/nohup
parente91b5c5294b1d9ea3fa7c35bd5c18433359b84eb (diff)
downloadsrc-34398e2d9be9501c207de8409b36f4eb39f3e9de.tar.gz
src-34398e2d9be9501c207de8409b36f4eb39f3e9de.zip
Notes
Diffstat (limited to 'usr.bin/nohup')
-rw-r--r--usr.bin/nohup/nohup.17
-rw-r--r--usr.bin/nohup/nohup.c2
2 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/nohup/nohup.1 b/usr.bin/nohup/nohup.1
index 9aa327128352..a674c60bd54a 100644
--- a/usr.bin/nohup/nohup.1
+++ b/usr.bin/nohup/nohup.1
@@ -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
diff --git a/usr.bin/nohup/nohup.c b/usr.bin/nohup/nohup.c
index 8992997b6cfd..36f832e26a71 100644
--- a/usr.bin/nohup/nohup.c
+++ b/usr.bin/nohup/nohup.c
@@ -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);
}