aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tr/tr.1
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>1997-08-18 07:24:58 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>1997-08-18 07:24:58 +0000
commitaf647767ed8f2ec38251e8185ef0b6adb35529e6 (patch)
tree7d779d0805229936ab82b54226bb0da866a549e1 /usr.bin/tr/tr.1
parentaa736575ab199dcebc5450c4c2445f8b7548aff3 (diff)
downloadsrc-af647767ed8f2ec38251e8185ef0b6adb35529e6.tar.gz
src-af647767ed8f2ec38251e8185ef0b6adb35529e6.zip
Use err(3) instead of local redefinition. Cosmetic in usage().
Notes
Notes: svn path=/head/; revision=28368
Diffstat (limited to 'usr.bin/tr/tr.1')
-rw-r--r--usr.bin/tr/tr.110
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/tr/tr.1 b/usr.bin/tr/tr.1
index 517046373740..77790736c0aa 100644
--- a/usr.bin/tr/tr.1
+++ b/usr.bin/tr/tr.1
@@ -58,7 +58,7 @@
.Ar string1 string2
.Sh DESCRIPTION
The
-.Nm tr
+.Nm
utility copies the standard input to the standard output with substitution
or deletion of selected characters.
.Pp
@@ -225,7 +225,7 @@ it's interpreted as a decimal value.
.El
.Pp
The
-.Nm tr
+.Nm
utility exits 0 on success, and >0 if an error occurs.
.Sh EXAMPLES
The following examples are shown as given to the shell:
@@ -261,13 +261,13 @@ represent the three characters ``a'', ``-'' and ``z'' will have to be
rewritten as ``a\e-z''.
.Pp
The
-.Nm tr
+.Nm
utility has historically not permitted the manipulation of NUL bytes in
its input and, additionally, stripped NUL's from its input stream.
This implementation has removed this behavior as a bug.
.Pp
The
-.Nm tr
+.Nm
utility has historically been extremely forgiving of syntax errors,
for example, the
.Fl c
@@ -277,7 +277,7 @@ options were ignored unless two strings were specified.
This implementation will not permit illegal syntax.
.Sh STANDARDS
The
-.Nm tr
+.Nm
utility is expected to be
.St -p1003.2
compatible.