tr Command in Linux
1.0 tr
The tr command is a filter which reads the standard input, translates or deletes characters and writes on its standard output. The tr command syntax is,
tr [OPTION]... SET1 [SET2]
tr transliterates characters from SET1 into corresponding characters of SET2 in input and writes resulting text on the standard output.… Read more