sed编辑器之转换命令
程序员文章站
2022-06-21 15:34:19
...
转换(transform)命令(y)是唯一可以处理单个字符的sed编辑器命令。转换命令格式如下:
[address]y/inchars/outchars/
转换命令会对inchars和outchars值进行一对一的映射。inchars中的第一个字符会被转换为outchars中的第一个字符,第二个字符会被转换成outchars中的第二个字符。这个映射过程会一直持续到处理完指定字符。如果inchars和outchars的长度不同,则sed编辑器会产生一条错误消息:
$ sed 'y/123/789/' data.txt
This is line number 7.
This is line number 8.
This is line number 9.
This is line number 4.
This is line number 7 again.
This is yet another line.
This is the last line in the file.
$
如输出所示,inchars模式中指定字符的每个实例都会被替换成outchars模式中相同位置的那个字符。
转换命令是一个全局命令,也就是说,它会文本行中找到的所有指定字符自动进行转换,而不会考虑它们出现的位置。
$ echo "This 1 is a test of 1 try." | sed 'y/123/456/'
This 4 is a test of 4 try.
$
sed编辑器转换了在文本行中匹配到的字符1的两个实例。无法限定只转换在特定地方出现的字符。
上一篇: 音乐小站
下一篇: Linux Sed编辑器基础命令操作