标签:参数 匹配 string 笔记 选项 code 输入 ons span
替换指定的字符
tr [options] string1 string2
tr通常带有两个参数:string1 和 string2 ,当tr发现与string1中有匹配的字符时,它将使用string2中对应的字符来替换输入中的字符
-c 对string1取反,使得tr匹配除了在string1中出现的所有字符
-d 删除与string1中制定的字符匹配的字符
1 $ echo abcdef | tr ‘abcdef‘ ‘xyzabd‘ 2 xyzabd 3 $ echo abcdef | tr ‘a-f‘ ‘x-za-c‘ 4 xyzabc
标签:参数 匹配 string 笔记 选项 code 输入 ons span
原文地址:http://www.cnblogs.com/luoahong/p/6188591.html