diff options
author | charnier <charnier@FreeBSD.org> | 2000-03-26 14:46:41 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 2000-03-26 14:46:41 +0000 |
commit | b7d47847507c6e86738b1e18766fc0a7414792ee (patch) | |
tree | 53726ea8ead4d79d9f85f42802d7d1e3a3155333 /usr.bin/nohup | |
parent | f0804c6aec14c71f776af36c70eb79ab1bd69123 (diff) | |
download | FreeBSD-src-b7d47847507c6e86738b1e18766fc0a7414792ee.zip FreeBSD-src-b7d47847507c6e86738b1e18766fc0a7414792ee.tar.gz |
Sync SYNOPSIS and usage() string.
Diffstat (limited to 'usr.bin/nohup')
-rw-r--r-- | usr.bin/nohup/nohup.1 | 7 | ||||
-rw-r--r-- | usr.bin/nohup/nohup.c | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/nohup/nohup.1 b/usr.bin/nohup/nohup.1 index 9aa3271..a674c60 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 8992997..36f832e 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); } |