Linux命令--文本处理命令详解tr

tr 命令:用于转换字符、删除字符和压缩重复字符。

语法格式:tr +选项  文件名1  文件名2 

示例1: echo helloABC  | tr  [:lower:] [:upper:]  #将helloABC中的小写字母替换为大写


或者: echo helloABC | tr a-z  A-Z  #同样是将helloABC中的小写字母替换为大写

 

示例2:使用tr命令转换一个文件的内容,并将转换结果输出到另一文件

cat  1.txt


tr '()'  '{}'  <1.txt>  2.txt   #重定向读入1.txt的内容,用{}替换1.txt中的(),并将替换结果重定向输出到2.txt中


tr '()'  '{}'  <1.txt  #重定向读入1.txt的内容,用{}替换1.txt中的(),只预览,不做实际替换


示例3:echo "hello world" | tr [:space:]  '\t'  #将字符串中的空格替换为制表符


示例4:echo  "hhhhelloooo wwwworlddddd" | tr -s "howd" #压缩字符串中的"howd"这些重复的字母


示例5:echo "hello WORLD" | tr -d a-z #删除字符串中的小写字母


echo "hello world 123" | tr -d [:digit:] #删除字符串中的数字


echo "hello world 123" | tr -cd [:digit:] #删除字符串中,除数字以外的所有字符(类似于取反)


更多使用方法,请参考:http://linux.51yip.com/search/tr

你可能感兴趣的:(Linux命令详解)