The tr
command can be used to translate, squeeze and delete character
sequences. See man tr
and
IEEE1003.1-2004-tr for the full specification.
tr
, unlike most other utilities, only reads from standard input
and only writes to standard output. Therefore, you will have to use
tr [options] < input > output
.
tr
operates in a number of modes, depending upon the invocation:
tr -d asdf
.
tr -s asdf
.
tr abc 123
.
Certain special forms are allowed for the arguments. a-z
expands to all
characters from 'a' to 'z', \t
represents a tab and so on. See the
documentation for a full list.