tr
Translate or delete characters from input.
Syntax
$tr [OPTIONS] SET1 [SET2]
Examples
Examples
$tr a-z A-Z
Examples
$tr -d '0-9'
Typical use cases
tr a-z A-Z
tr -d '0-9'
tr -s ' '
Note
Useful for case conversion and deletion.
Export