diff options
author | ru <ru@FreeBSD.org> | 2001-11-20 11:11:36 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-11-20 11:11:36 +0000 |
commit | 6d8eb2d7751b2184023b1cd26a8277dba95f4a56 (patch) | |
tree | 3db4d9eb31dd274f8ceb717391e94de998865188 | |
parent | dc2b3d61ed05a6e9e2c4e6c40ee79544d8b6c06b (diff) | |
download | FreeBSD-src-6d8eb2d7751b2184023b1cd26a8277dba95f4a56.zip FreeBSD-src-6d8eb2d7751b2184023b1cd26a8277dba95f4a56.tar.gz |
Remove obfuscating details of using the false(1) and true(1) utilities
inside the Bourne shell scripts.
PR: docs/32082
-rw-r--r-- | usr.bin/false/false.1 | 8 | ||||
-rw-r--r-- | usr.bin/true/true.1 | 8 |
2 files changed, 2 insertions, 14 deletions
diff --git a/usr.bin/false/false.1 b/usr.bin/false/false.1 index 1e4a949..a85c60d 100644 --- a/usr.bin/false/false.1 +++ b/usr.bin/false/false.1 @@ -46,13 +46,7 @@ .Sh DESCRIPTION The .Nm -command is usually used in a Bourne shell script. -It tests for the appropriate status "false" before running -(or failing to run) a list of commands. -.Pp -The -.Nm -utility always exits with a value other than zero. +utility always returns with a non-zero exit code. .Sh SEE ALSO .Xr csh 1 , .Xr sh 1 , diff --git a/usr.bin/true/true.1 b/usr.bin/true/true.1 index 23d10f3..e212e1f 100644 --- a/usr.bin/true/true.1 +++ b/usr.bin/true/true.1 @@ -46,17 +46,11 @@ .Sh DESCRIPTION The .Nm -command is normally used in a Bourne shell script. -It tests for the appropriate status "false" before running -(or failing to run) a list of commands. +utility always returns with an exit code of zero. .Sh SEE ALSO .Xr csh 1 , .Xr false 1 , .Xr sh 1 -.Sh DIAGNOSTICS -The -.Nm -utility always returns with exit code zero. .Sh STANDARDS The .Nm |