shell实现tr删除替换详解
tr(translate缩写)主要用于删除文件中的控制字符,或进行字符转换。
语法:tr [–c/d/s/t] [set1] [set2] #set1: 字符集1;set2:字符集2
-c:complement,用set2替换除set1以外的字符。
-d:delete,删除set1中所有的字符,不转换。
-s:squeeze-repeats,压缩set1中重复的字符。
-t:truncate-set1,将set1用set2转换,一般缺省为-t。
1、去除重复的字符
#删除空白行就是删除换行符/n。
#注意:这些空白行上只有回车符,没有空格符。
$ cat test.txt
i love linux!
hello world!
shell is worthy to been studied.
#这里用换行符的转义字符\n.
#注意:此处用-s删除了多余的换行符,如果用-d,则会删除所有的换行符.
$ cat test.txt | tr -s ["\n"]
i love linux!
hello world!
shell is worthy to been studied.
#也可以用八进制符\012,\012与\n都是换行符。
$ cat test.txt | tr -s "[\012]"
i love linux!
hello world!
shell is worthy to been studied.
2、大小写互换
# 将语句中所有的小写字母变成大写字母,其中-t可省略。
$ echo "hello world i love you" |tr [-t] [a-z] [a-z]
hello world i love you
# 将语句中所有的大写字母变成小写字母。
$ echo "hello world i love you" |tr [a-z] [a-z]
hello world i love you
# 也可以利用字符类进行转换。
# [:lower:]代表小写字母,[:upper:]代表大写字母。
$ echo "hello world i love you" |tr [:lower:] [:upper:]
hello world i love you
3、删除指定的字符
$ cat test.txt
monday 09:00
tuesday 09:10
wednesday 10:11
thursday 11:30
friday 08:00
saturday 07:40
sunday 10:00
# 现在要删除处理星期之外的所有字符。
# -d代表删除,[0-9]代表所有的数字,[: ]代表冒号和空格。
$ cat test.txt | tr -d "[0-9][: ]"
monday
tuesday
wednesday
thursday
friday
saturday
sunday
4、利用-c进行补集的替换
# 有时候在文本中我们只知道要保留的一些字符,其他字符种类繁多,就可以使用补集的替换。
$ cat test.txt
monday 09:00
tuesday 09:10
wednesday 10:11
thursday 11:30
friday 08:00
saturday 07:40
sunday 10:00
# 我们只需要星期,则思路就是除了字母,其他统统替换掉。
# 这里,-c:用换行符替换掉除了字母外的所有字符;-s:删除多余的换行符。
$ cat test.txt|tr -cs "[a-z][a-z]" "\n"
monday
tuesday
wednesday
thursday
friday
saturday
sunday
总结:其中大小写字母的转换,删除不需要的字符比较常用。tr语法简单,易用。
上一篇: 主板电源接口变形引发不能启动故障