0% found this document useful (0 votes)
105 views4 pages

TR Command in Linux With Examples: How To Use The Command

The tr command in Linux translates, deletes, or squeezes characters from standard input and writes the output to standard output. It can perform operations like removing repeated characters, converting case, and basic character replacing. tr accepts two character sets of usually the same length and replaces the characters in the first set with the corresponding characters in the second set. It has options like -d to delete characters, -s to squeeze repeated characters, and -c to complement the first character set. tr can be used to convert case, remove non-numeric characters, put words on new lines, remove blank lines, and print PATH directories separately.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
105 views4 pages

TR Command in Linux With Examples: How To Use The Command

The tr command in Linux translates, deletes, or squeezes characters from standard input and writes the output to standard output. It can perform operations like removing repeated characters, converting case, and basic character replacing. tr accepts two character sets of usually the same length and replaces the characters in the first set with the corresponding characters in the second set. It has options like -d to delete characters, -s to squeeze repeated characters, and -c to complement the first character set. tr can be used to convert case, remove non-numeric characters, put words on new lines, remove blank lines, and print PATH directories separately.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Tr Command in Linux with Examples

Linuxize

tris a command-line utility in Linux and Unix systems that translates, deletes, and squeezes characters from
the standard input and writes the result to the standard output.

The tr command can perform operations like removing repeated characters, converting uppercase to
lowercase, and basic character replacing and removing. Typically, it is used in combination with other
commands through piping.

In this tutorial, we will show you how to use the tr command through practical examples and detailed
explanations of the most common options.

How to Use the tr Command


The syntax for the tr command is as follows:

traccepts two sets of characters, usually with the same length, and replaces the characters of the first sets
with the corresponding characters from the second set.

A SET is basically a string of characters, including the special backslash-escaped characters.

In the following example, tr will replace all characters from the standard input (linuxize), by mapping the
characters from the first set with the matching ones from the second set.
echo 'linuxize' | tr 'lin' 'red'

Each occurrence of l is replaced with r, i with e, and n with d:


reduxeze

The character sets can also be defined using character ranges. For example, instead of writing:
echo 'linuxize' | tr 'lmno' 'wxyz'

you can use:


echo 'linuxize' | tr 'l-n' 'w-z'

When -c (--complement) option is used, tr replaces all characters that are not in SET1.

In the example below all characters except “li” will be replaced with the last character from the second set:
echo 'linuxize' | tr -c 'li' 'xy'

liyyyiyyy

As you may have noticed, the output above has one more visible character than the input. This is because the
echo command prints an invisible newline character \n that is also replaced with y. To echo a string without a
new line, use the -n option.

The -d (--delete) option tells tr to delete characters specified in SET1. When deleting characters without
squeezing, specify only one set.
The command below will remove l, i and z characters:
echo 'Linuxize' | tr -d 'liz'

The L character is not deleted because the input includes an uppercase L while the l character in the SET is
lowercase.
Lnuxe

The -s (--squeeze-repeats) option replaces a sequence of repeated occurrences with the character set in the
last SET.

In the following example, tr removes the repeated space characters:


echo "GNU \ Linux" | tr -s ' '

GNU \ Linux

When SET2 is used the sequence of the character specified in SET1 is replaced with SET2.
echo "GNU \ Linux" | tr -s ' ' '_'

GNU_\_Linux

The -t (--truncate-set1) option forces tr to truncate SET1 to the length of SET2 before doing further
processing.

By default, if SET1 is larger than SET2 tr will reuse the last character of SET2. Here is an example:
echo 'Linux ize' | tr 'abcde' '12'

The output shows that the character e from SET1 is matched with the latest character of SET2, which is 2:
Linux iz2

Now, use the same command with the -t option:


echo 'Linux ize' | tr -t 'abcde' '12'

Linux ize

You can see that the last three characters of the SET1 are removed. SET1 becomes ‘ab’, the same length as
SET2, and no replacement is made.

Combining options

The tr command also allows you to combine its options. For example, the following command first replaces
all characters except i with 0 and then squeezes the repeated 0 characters:
echo 'Linux ize' | tr -cs 'i' '0'

0i0i0

In this section, we’ll cover a few examples of common uses of the tr command.

Convert lower case to upper case

Converting lower case to upper case or reverse is one of the typical use cases of the tr command. [:lower:]
matches all lower case characters and [:upper:] matches all uppercase characters.
echo 'Linuxize' | tr '[:lower:]' '[:upper:]'
LINUXIZE

Instead of character classes, you can also use ranges:


echo 'Linuxize' | tr 'a-z' 'A-Z'

To convert upper case to lower case, simply switch the places of the sets.

Remove all non-numeric characters

The following command removes all non-numeric characters:


echo "my phone is 123-456-7890" | tr -cd [:digit:]

[:digit:]stands for all digit characters, and by using the -c option, the command removes all non-digit
characters. The output will look like this:
1234567890

Put each word in a new line

To put each word in a new line, we need to match all non-alphanumerical characters and replace them with
a new line:
echo 'GNU is an operating system' | tr -cs '[:alnum:]' '\n'

GNU
is
an
operating
system

Remove blank lines

To delete the blank lines simply squeeze the repetitive newline characters:
tr -s '\n' < file.txt > new_file.txt

In the command above we are using the redirection symbol < to pass the content of the file.txt to the tr
command. The redirection > writes the output of the command to new_file.txt.

Print $PATH directories on a separate line

The $PATH environmental variable is a colon-delimited list of directories that tells the shell which directories
to search for executable files when you type a command.

To print each directory on a separate line we need to match the colon (:) and replace it with the new line:
echo $PATH | tr ':' '\n'

/usr/local/sbin
/usr/local/bin
/usr/sbin
/usr/bin
/sbin
/bin

Conclusion
tr is a command for translating or deleting characters.
Although very useful, tr can work only with single characters. For more complex pattern matching and
string manipulation, you should use sed or awk .

If you have any questions or feedback, feel free to leave a comment.

You might also like