diff options
author | tjr <tjr@FreeBSD.org> | 2002-06-28 09:34:46 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-06-28 09:34:46 +0000 |
commit | 9daefc781779df0de37febe40738c040127cfd1a (patch) | |
tree | 13d6dcd1a6051431b8fe9564437506d463032bab /usr.bin/nohup | |
parent | edd536143a428472be806266b05eb6740ac92c31 (diff) | |
download | FreeBSD-src-9daefc781779df0de37febe40738c040127cfd1a.zip FreeBSD-src-9daefc781779df0de37febe40738c040127cfd1a.tar.gz |
Refer to utilities, not commands, for consistency with env(1), nice(1), etc.
Diffstat (limited to 'usr.bin/nohup')
-rw-r--r-- | usr.bin/nohup/nohup.1 | 14 | ||||
-rw-r--r-- | usr.bin/nohup/nohup.c | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/nohup/nohup.1 b/usr.bin/nohup/nohup.1 index aab70df..63f0751 100644 --- a/usr.bin/nohup/nohup.1 +++ b/usr.bin/nohup/nohup.1 @@ -40,17 +40,17 @@ .Os .Sh NAME .Nm nohup -.Nd invoke a command immune to hangups +.Nd invoke a utility immune to hangups .Sh SYNOPSIS .Nm .Op Fl Fl -.Ar command +.Ar utility .Op Ar arguments .Sh DESCRIPTION The .Nm utility invokes -.Ar command +.Ar utility with its .Ar arguments and at this time sets the signal @@ -83,7 +83,7 @@ utility uses the directory named by to create the file. .It Ev PATH Used to locate the requested -.Ar command +.Ar utility if the name contains no .Ql / characters. @@ -95,11 +95,11 @@ utility exits with one of the following values: .Bl -tag -width Ds .It 126 The -.Ar command +.Ar utility was found, but could not be invoked. .It 127 The -.Ar command +.Ar utility could not be found or an error occurred in .Nm . .El @@ -107,7 +107,7 @@ could not be found or an error occurred in Otherwise, the exit status of .Nm will be that of -.Ar command . +.Ar utility . .Sh SEE ALSO .Xr builtin 1 , .Xr csh 1 , diff --git a/usr.bin/nohup/nohup.c b/usr.bin/nohup/nohup.c index 4fd82c8..230365f 100644 --- a/usr.bin/nohup/nohup.c +++ b/usr.bin/nohup/nohup.c @@ -134,6 +134,6 @@ dupit: static void usage() { - (void)fprintf(stderr, "usage: nohup [--] command [arguments]\n"); + (void)fprintf(stderr, "usage: nohup [--] utility [arguments]\n"); exit(EXIT_MISC); } |