Translate or delete characters from input.
tr reads from stdin and replaces, deletes, or squeezes characters.
echo "abc" | tr a-z A-Z echo "hello world" | tr -s ' '
# Remove digits echo "a1b2c3" | tr -d 0-9 # Replace spaces with newline echo "one two three" | tr ' ' '\n'