tr - translate characters
tr [-cs] string1 string2
tr [-c] -d string1
tr [-c] -s string1
tr [-c] -ds string1 string2
The tr(1) utility copies the standard input to the standard output with substitution or deletion of selected characters.
The following options are available:
In the first synopsis form, the characters in string1 are translated into the characters in string2. The first character in string1 is translated into the first character in string2 and so on. If string1 is longer than string2, the last character found in string2 is duplicated until string1 is exhausted.
In the second synopsis form, the characters in string1 are deleted from the input.
In the third synopsis form, the characters in string1 are compressed as described for the -s option.
In the fourth synopsis form, the characters in string1 are deleted from the input, and the characters in string2 are compressed as described for the -s option.
The following conventions can be used in string1 and string2 to specify sets of characters:
\a | Alert character |
\b | Backspace |
\f | Form-feed |
\n | Newline |
\r | Carriage return |
\t | Tab |
\v | Vertical tab |
A backslash followed by any other character maps to that character.
alnum | Alphanumeric characters |
alpha | Alphabetic characters |
cntrl | Control characters |
digit | Numeric characters |
graph | Graphic characters |
lower | Lowercase alphabetic characters |
Printable characters | |
punct | Punctuation characters |
space | Space characters |
upper | Uppercase characters |
xdigit | Hexadecimal characters |
The tr(1) utility exits 0 on success, and >0 if an error occurs.
The following examples are shown as given to the shell:
Create a list of the words in file1, one per line, where a word is taken to be a maximal string of letters:
tr -cs [:alpha:] \n < file1
Translate the contents of file1 to uppercase:
tr [:lower:] [:upper:] < file1
Strip out non-printable characters from file1:
tr -cd [:print:] < file1
Perform (or undo) a rot13 transformation on text in file1:
tr [A-Ma-mN-Zn-z] [N-Zn-zA-Ma-m] < file1
System V has historically implemented character ranges using the syntax [c-c] instead of the c-c used by historic Berkeley Software Distribution (BSD) implementations and standardized by POSIX. System V shell scripts should work under this implementation as long as the range is intended to map in another range. That is, the command tr [a-z] [A-Z] will work, as it will map the [ character in string1 to the [ character in string2. If the shell script is deleting or squeezing characters, however, as in the command tr -d [a-z], the characters [ and ] will be included in the deletion or compression list which would not have happened under an historic System V implementation. Additionally, any scripts that depended on the sequence a-z to represent the three characters a, - and z will have to be rewritten as a\-z.
The tr(1) 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.
The tr(1) utility has historically been extremely forgiving of syntax errors, for example, the -c and -s options were ignored unless two strings were specified. This implementation will not permit illegal syntax.