From 4633a1ab997e13d46caa677756b69d5841d00b3e Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Fri, 28 Jun 2002 09:34:46 +0000 Subject: [PATCH] Refer to utilities, not commands, for consistency with env(1), nice(1), etc. --- usr.bin/nohup/nohup.1 | 14 +++++++------- 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 aab70df9346..63f0751b456 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 4fd82c8183a..230365f5979 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); }