1. tr 映射(tr "[a-z]" [A-Z])
echo abc|tr "[a-z]" "[A-Z]"
#一对一映射大小写转换
#输出
ABC
2. tr 压缩(tr -s)
cat words.txt |tr -s ' '
2.1 tr 压缩替换
echo abc def |tr -s ' ' '\n'
#将多个空格压缩成1个空格,完事后,将空格替换为换行符
#输出结果为
abc
def
echo abc|tr "[a-z]" "[A-Z]"
#一对一映射大小写转换
#输出
ABC
cat words.txt |tr -s ' '
echo abc def |tr -s ' ' '\n'
#将多个空格压缩成1个空格,完事后,将空格替换为换行符
#输出结果为
abc
def