19b50d902SRodney W. Grimes.\" Copyright (c) 1991, 1993 29b50d902SRodney W. Grimes.\" The Regents of the University of California. All rights reserved. 39b50d902SRodney W. Grimes.\" 49b50d902SRodney W. Grimes.\" This code is derived from software contributed to Berkeley by 59b50d902SRodney W. Grimes.\" the Institute of Electrical and Electronics Engineers, Inc. 69b50d902SRodney W. Grimes.\" 79b50d902SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without 89b50d902SRodney W. Grimes.\" modification, are permitted provided that the following conditions 99b50d902SRodney W. Grimes.\" are met: 109b50d902SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright 119b50d902SRodney W. Grimes.\" notice, this list of conditions and the following disclaimer. 129b50d902SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright 139b50d902SRodney W. Grimes.\" notice, this list of conditions and the following disclaimer in the 149b50d902SRodney W. Grimes.\" documentation and/or other materials provided with the distribution. 159b50d902SRodney W. Grimes.\" 3. All advertising materials mentioning features or use of this software 169b50d902SRodney W. Grimes.\" must display the following acknowledgement: 179b50d902SRodney W. Grimes.\" This product includes software developed by the University of 189b50d902SRodney W. Grimes.\" California, Berkeley and its contributors. 199b50d902SRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors 209b50d902SRodney W. Grimes.\" may be used to endorse or promote products derived from this software 219b50d902SRodney W. Grimes.\" without specific prior written permission. 229b50d902SRodney W. Grimes.\" 239b50d902SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 249b50d902SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 259b50d902SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 269b50d902SRodney W. Grimes.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 279b50d902SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 289b50d902SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 299b50d902SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 309b50d902SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 319b50d902SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 329b50d902SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 339b50d902SRodney W. Grimes.\" SUCH DAMAGE. 349b50d902SRodney W. Grimes.\" 359b50d902SRodney W. Grimes.\" @(#)tr.1 8.1 (Berkeley) 6/6/93 36c3aac50fSPeter Wemm.\" $FreeBSD$ 379b50d902SRodney W. Grimes.\" 3869bd8767SWolfgang Helbig.Dd October 11, 1997 399b50d902SRodney W. Grimes.Dt TR 1 409b50d902SRodney W. Grimes.Os 419b50d902SRodney W. Grimes.Sh NAME 429b50d902SRodney W. Grimes.Nm tr 439b50d902SRodney W. Grimes.Nd translate characters 449b50d902SRodney W. Grimes.Sh SYNOPSIS 458fe908efSRuslan Ermilov.Nm 4669bd8767SWolfgang Helbig.Op Fl csu 479b50d902SRodney W. Grimes.Ar string1 string2 488fe908efSRuslan Ermilov.Nm 4969bd8767SWolfgang Helbig.Op Fl cu 509b50d902SRodney W. Grimes.Fl d 519b50d902SRodney W. Grimes.Ar string1 528fe908efSRuslan Ermilov.Nm 5369bd8767SWolfgang Helbig.Op Fl cu 549b50d902SRodney W. Grimes.Fl s 559b50d902SRodney W. Grimes.Ar string1 568fe908efSRuslan Ermilov.Nm 5769bd8767SWolfgang Helbig.Op Fl cu 589b50d902SRodney W. Grimes.Fl ds 599b50d902SRodney W. Grimes.Ar string1 string2 609b50d902SRodney W. Grimes.Sh DESCRIPTION 619b50d902SRodney W. GrimesThe 62af647767SPhilippe Charnier.Nm 639b50d902SRodney W. Grimesutility copies the standard input to the standard output with substitution 649b50d902SRodney W. Grimesor deletion of selected characters. 659b50d902SRodney W. Grimes.Pp 669b50d902SRodney W. GrimesThe following options are available: 679b50d902SRodney W. Grimes.Bl -tag -width Ds 689b50d902SRodney W. Grimes.It Fl c 699b50d902SRodney W. GrimesComplements the set of characters in 709b50d902SRodney W. Grimes.Ar string1 , 719b50d902SRodney W. Grimesthat is ``-c ab'' includes every character except for ``a'' and ``b''. 729b50d902SRodney W. Grimes.It Fl d 739b50d902SRodney W. GrimesThe 749b50d902SRodney W. Grimes.Fl d 759b50d902SRodney W. Grimesoption causes characters to be deleted from the input. 769b50d902SRodney W. Grimes.It Fl s 779b50d902SRodney W. GrimesThe 789b50d902SRodney W. Grimes.Fl s 799b50d902SRodney W. Grimesoption squeezes multiple occurrences of the characters listed in the last 809b50d902SRodney W. Grimesoperand (either 819b50d902SRodney W. Grimes.Ar string1 829b50d902SRodney W. Grimesor 839b50d902SRodney W. Grimes.Ar string2 ) 849b50d902SRodney W. Grimesin the input into a single instance of the character. 859b50d902SRodney W. GrimesThis occurs after all deletion and translation is completed. 8669bd8767SWolfgang Helbig.It Fl u 8769bd8767SWolfgang HelbigThe 8869bd8767SWolfgang Helbig.Fl u 8969bd8767SWolfgang Helbigoption guarantees that any output is unbuffered. 909b50d902SRodney W. Grimes.El 919b50d902SRodney W. Grimes.Pp 929b50d902SRodney W. GrimesIn the first synopsis form, the characters in 939b50d902SRodney W. Grimes.Ar string1 949b50d902SRodney W. Grimesare translated into the characters in 959b50d902SRodney W. Grimes.Ar string2 969b50d902SRodney W. Grimeswhere the first character in 979b50d902SRodney W. Grimes.Ar string1 989b50d902SRodney W. Grimesis translated into the first character in 999b50d902SRodney W. Grimes.Ar string2 1009b50d902SRodney W. Grimesand so on. 1019b50d902SRodney W. GrimesIf 1029b50d902SRodney W. Grimes.Ar string1 1039b50d902SRodney W. Grimesis longer than 1049b50d902SRodney W. Grimes.Ar string2 , 1059b50d902SRodney W. Grimesthe last character found in 1069b50d902SRodney W. Grimes.Ar string2 1079b50d902SRodney W. Grimesis duplicated until 1089b50d902SRodney W. Grimes.Ar string1 1099b50d902SRodney W. Grimesis exhausted. 1109b50d902SRodney W. Grimes.Pp 1119b50d902SRodney W. GrimesIn the second synopsis form, the characters in 1129b50d902SRodney W. Grimes.Ar string1 1139b50d902SRodney W. Grimesare deleted from the input. 1149b50d902SRodney W. Grimes.Pp 1159b50d902SRodney W. GrimesIn the third synopsis form, the characters in 1169b50d902SRodney W. Grimes.Ar string1 1179b50d902SRodney W. Grimesare compressed as described for the 1189b50d902SRodney W. Grimes.Fl s 1199b50d902SRodney W. Grimesoption. 1209b50d902SRodney W. Grimes.Pp 1219b50d902SRodney W. GrimesIn the fourth synopsis form, the characters in 1229b50d902SRodney W. Grimes.Ar string1 1239b50d902SRodney W. Grimesare deleted from the input, and the characters in 1249b50d902SRodney W. Grimes.Ar string2 1259b50d902SRodney W. Grimesare compressed as described for the 1269b50d902SRodney W. Grimes.Fl s 1279b50d902SRodney W. Grimesoption. 1289b50d902SRodney W. Grimes.Pp 1299b50d902SRodney W. GrimesThe following conventions can be used in 1309b50d902SRodney W. Grimes.Ar string1 1319b50d902SRodney W. Grimesand 1329b50d902SRodney W. Grimes.Ar string2 1339b50d902SRodney W. Grimesto specify sets of characters: 1349b50d902SRodney W. Grimes.Bl -tag -width [:equiv:] 1359b50d902SRodney W. Grimes.It character 1369b50d902SRodney W. GrimesAny character not described by one of the following conventions 1379b50d902SRodney W. Grimesrepresents itself. 1389b50d902SRodney W. Grimes.It \eoctal 1399b50d902SRodney W. GrimesA backslash followed by 1, 2 or 3 octal digits represents a character 1409b50d902SRodney W. Grimeswith that encoded value. 1419b50d902SRodney W. GrimesTo follow an octal sequence with a digit as a character, left zero-pad 1429b50d902SRodney W. Grimesthe octal sequence to the full 3 octal digits. 1439b50d902SRodney W. Grimes.It \echaracter 1449b50d902SRodney W. GrimesA backslash followed by certain special characters maps to special 1459b50d902SRodney W. Grimesvalues. 146726b61abSRuslan Ermilov.Pp 1479597e1c2SRuslan Ermilov.Bl -column "\ea" 1489b88faecSRuslan Ermilov.It "\ea <alert character> 1499b88faecSRuslan Ermilov.It "\eb <backspace> 1509b88faecSRuslan Ermilov.It "\ef <form-feed> 1519b88faecSRuslan Ermilov.It "\en <newline> 1529b88faecSRuslan Ermilov.It "\er <carriage return> 1539b88faecSRuslan Ermilov.It "\et <tab> 1549b88faecSRuslan Ermilov.It "\ev <vertical tab> 1559b50d902SRodney W. Grimes.El 156726b61abSRuslan Ermilov.Pp 1579b50d902SRodney W. GrimesA backslash followed by any other character maps to that character. 1589b50d902SRodney W. Grimes.It c-c 1599b50d902SRodney W. GrimesRepresents the range of characters between the range endpoints, inclusively. 1609b50d902SRodney W. Grimes.It [:class:] 1619b50d902SRodney W. GrimesRepresents all characters belonging to the defined character class. 1629b50d902SRodney W. GrimesClass names are: 163726b61abSRuslan Ermilov.Pp 1649597e1c2SRuslan Ermilov.Bl -column "xdigit" 1659b88faecSRuslan Ermilov.It "alnum <alphanumeric characters> 1669b88faecSRuslan Ermilov.It "alpha <alphabetic characters> 1679b88faecSRuslan Ermilov.It "cntrl <control characters> 1689b88faecSRuslan Ermilov.It "digit <numeric characters> 1699b88faecSRuslan Ermilov.It "graph <graphic characters> 1709b88faecSRuslan Ermilov.It "lower <lower-case alphabetic characters> 1719b88faecSRuslan Ermilov.It "print <printable characters> 1729b88faecSRuslan Ermilov.It "punct <punctuation characters> 1739b88faecSRuslan Ermilov.It "space <space characters> 1749b88faecSRuslan Ermilov.It "upper <upper-case characters> 1759b88faecSRuslan Ermilov.It "xdigit <hexadecimal characters> 1769b50d902SRodney W. Grimes.El 1779b50d902SRodney W. Grimes.Pp 1789b88faecSRuslan Ermilov.\" All classes may be used in 1799b88faecSRuslan Ermilov.\" .Ar string1 , 1809b88faecSRuslan Ermilov.\" and in 1819b88faecSRuslan Ermilov.\" .Ar string2 1829b88faecSRuslan Ermilov.\" when both the 1839b88faecSRuslan Ermilov.\" .Fl d 1849b88faecSRuslan Ermilov.\" and 1859b88faecSRuslan Ermilov.\" .Fl s 1869b88faecSRuslan Ermilov.\" options are specified. 1879b88faecSRuslan Ermilov.\" Otherwise, only the classes ``upper'' and ``lower'' may be used in 1889b88faecSRuslan Ermilov.\" .Ar string2 1899b88faecSRuslan Ermilov.\" and then only when the corresponding class (``upper'' for ``lower'' 1909b88faecSRuslan Ermilov.\" and vice-versa) is specified in the same relative position in 1919b88faecSRuslan Ermilov.\" .Ar string1 . 1929b88faecSRuslan Ermilov.\" .Pp 1939b50d902SRodney W. GrimesWith the exception of the ``upper'' and ``lower'' classes, characters 1949b50d902SRodney W. Grimesin the classes are in unspecified order. 1959b50d902SRodney W. GrimesIn the ``upper'' and ``lower'' classes, characters are entered in 1969b50d902SRodney W. Grimesascending order. 1979b50d902SRodney W. Grimes.Pp 1989b50d902SRodney W. GrimesFor specific information as to which ASCII characters are included 1999b50d902SRodney W. Grimesin these classes, see 2009b50d902SRodney W. Grimes.Xr ctype 3 2019b50d902SRodney W. Grimesand related manual pages. 2029b50d902SRodney W. Grimes.It [=equiv=] 20385f6c317STim J. RobbinsRepresents all characters belonging to the same equivalence class as 20485f6c317STim J. Robbins.Ar equiv , 20585f6c317STim J. Robbinsordered by their encoded values. 2069b50d902SRodney W. Grimes.It [#*n] 2079b50d902SRodney W. GrimesRepresents 2089b50d902SRodney W. Grimes.Ar n 2099b50d902SRodney W. Grimesrepeated occurrences of the character represented by 2109b50d902SRodney W. Grimes.Ar # . 2119b50d902SRodney W. GrimesThis 2129b50d902SRodney W. Grimesexpression is only valid when it occurs in 2139b50d902SRodney W. Grimes.Ar string2 . 2149b50d902SRodney W. GrimesIf 2159b50d902SRodney W. Grimes.Ar n 2169b50d902SRodney W. Grimesis omitted or is zero, it is be interpreted as large enough to extend 2179b50d902SRodney W. Grimes.Ar string2 2189b50d902SRodney W. Grimessequence to the length of 2199b50d902SRodney W. Grimes.Ar string1 . 2209b50d902SRodney W. GrimesIf 2219b50d902SRodney W. Grimes.Ar n 2229b50d902SRodney W. Grimeshas a leading zero, it is interpreted as an octal value, otherwise, 2239b50d902SRodney W. Grimesit's interpreted as a decimal value. 2249b50d902SRodney W. Grimes.El 22585f6c317STim J. Robbins.Sh ENVIRONMENT 22685f6c317STim J. RobbinsThe 22785f6c317STim J. Robbins.Ev LANG , 22885f6c317STim J. Robbins.Ev LC_ALL , 22985f6c317STim J. Robbins.Ev LC_CTYPE 23085f6c317STim J. Robbinsand 23185f6c317STim J. Robbins.Ev LC_COLLATE 23285f6c317STim J. Robbinsenvironment variables affect the execution of 23385f6c317STim J. Robbins.Nm 23485f6c317STim J. Robbinsas described in 23585f6c317STim J. Robbins.Xr environ 7 . 236dbb9d8f8SPhilippe Charnier.Sh DIAGNOSTICS 237d628d776SRuslan Ermilov.Ex -std 2389b50d902SRodney W. Grimes.Sh EXAMPLES 2399b50d902SRodney W. GrimesThe following examples are shown as given to the shell: 240726b61abSRuslan Ermilov.Pp 2419b50d902SRodney W. GrimesCreate a list of the words in file1, one per line, where a word is taken to 2429b50d902SRodney W. Grimesbe a maximal string of letters. 243726b61abSRuslan Ermilov.Pp 2449b50d902SRodney W. Grimes.D1 Li "tr -cs \*q[:alpha:]\*q \*q\en\*q < file1" 245726b61abSRuslan Ermilov.Pp 2469b50d902SRodney W. GrimesTranslate the contents of file1 to upper-case. 247726b61abSRuslan Ermilov.Pp 2489b50d902SRodney W. Grimes.D1 Li "tr \*q[:lower:]\*q \*q[:upper:]\*q < file1" 249726b61abSRuslan Ermilov.Pp 2509b50d902SRodney W. GrimesStrip out non-printable characters from file1. 251726b61abSRuslan Ermilov.Pp 2529b50d902SRodney W. Grimes.D1 Li "tr -cd \*q[:print:]\*q < file1" 25385f6c317STim J. Robbins.Pp 25485f6c317STim J. RobbinsRemove diacritical marks from all accented variants of the letter 25585f6c317STim J. Robbins.Sq e : 25685f6c317STim J. Robbins.Pp 25785f6c317STim J. Robbins.Dl "tr \*q[=e=]\*q \*qe\*q" 2589b50d902SRodney W. Grimes.Sh COMPATIBILITY 2599b50d902SRodney W. GrimesSystem V has historically implemented character ranges using the syntax 260753d686dSRuslan Ermilov``[c-c]'' instead of the ``c-c'' used by historic 261753d686dSRuslan Ermilov.Bx 262753d686dSRuslan Ermilovimplementations and 2639b50d902SRodney W. Grimesstandardized by POSIX. 2649b50d902SRodney W. GrimesSystem V shell scripts should work under this implementation as long as 2659b50d902SRodney W. Grimesthe range is intended to map in another range, i.e. the command 2669b50d902SRodney W. Grimes``tr [a-z] [A-Z]'' will work as it will map the ``['' character in 2679b50d902SRodney W. Grimes.Ar string1 2689b50d902SRodney W. Grimesto the ``['' character in 2699b50d902SRodney W. Grimes.Ar string2 . 2709b50d902SRodney W. GrimesHowever, if the shell script is deleting or squeezing characters as in 2719b50d902SRodney W. Grimesthe command ``tr -d [a-z]'', the characters ``['' and ``]'' will be 2729b50d902SRodney W. Grimesincluded in the deletion or compression list which would not have happened 2739b50d902SRodney W. Grimesunder an historic System V implementation. 2749b50d902SRodney W. GrimesAdditionally, any scripts that depended on the sequence ``a-z'' to 2759b50d902SRodney W. Grimesrepresent the three characters ``a'', ``-'' and ``z'' will have to be 2769b50d902SRodney W. Grimesrewritten as ``a\e-z''. 2779b50d902SRodney W. Grimes.Pp 2789b50d902SRodney W. GrimesThe 279af647767SPhilippe Charnier.Nm 2809b50d902SRodney W. Grimesutility has historically not permitted the manipulation of NUL bytes in 2819b50d902SRodney W. Grimesits input and, additionally, stripped NUL's from its input stream. 2829b50d902SRodney W. GrimesThis implementation has removed this behavior as a bug. 2839b50d902SRodney W. Grimes.Pp 2849b50d902SRodney W. GrimesThe 285af647767SPhilippe Charnier.Nm 2869b50d902SRodney W. Grimesutility has historically been extremely forgiving of syntax errors, 2879b50d902SRodney W. Grimesfor example, the 2889b50d902SRodney W. Grimes.Fl c 2899b50d902SRodney W. Grimesand 2909b50d902SRodney W. Grimes.Fl s 2919b50d902SRodney W. Grimesoptions were ignored unless two strings were specified. 2929b50d902SRodney W. GrimesThis implementation will not permit illegal syntax. 2939b50d902SRodney W. Grimes.Sh STANDARDS 2949b50d902SRodney W. GrimesThe 295af647767SPhilippe Charnier.Nm 2969b50d902SRodney W. Grimesutility is expected to be 2979b50d902SRodney W. Grimes.St -p1003.2 2989b50d902SRodney W. Grimescompatible. 2999b50d902SRodney W. GrimesIt should be noted that the feature wherein the last character of 3009b50d902SRodney W. Grimes.Ar string2 3019b50d902SRodney W. Grimesis duplicated if 3029b50d902SRodney W. Grimes.Ar string2 3039b50d902SRodney W. Grimeshas less characters than 3049b50d902SRodney W. Grimes.Ar string1 3059b50d902SRodney W. Grimesis permitted by POSIX but is not required. 3069b50d902SRodney W. GrimesShell scripts attempting to be portable to other POSIX systems should use 3079b50d902SRodney W. Grimesthe ``[#*]'' convention instead of relying on this behavior. 30869bd8767SWolfgang HelbigThe 30969bd8767SWolfgang Helbig.Fl u 31069bd8767SWolfgang Helbigoption is an extension to the 31169bd8767SWolfgang Helbig.St -p1003.2 31269bd8767SWolfgang Helbigstandard. 313