在這里用到的意思是轉(zhuǎn)化差凹,轉(zhuǎn)變,轉(zhuǎn)換老赤,在linux下輸入tr --help查看一下提示:
amosli@amosli-pc:~$ tr --help
Usage: tr [OPTION]... SET1 [SET2]
Translate, squeeze, and/or delete characters from standard input,
writing to standard output.
-c, -C, --complement use the complement of SET1
-d, --delete delete characters in SET1, do not translate
-s, --squeeze-repeats replace each input sequence of a repeated character
that is listed in SET1 with a single occurrence
of that character
-t, --truncate-set1 first truncate SET1 to length of SET2
--help display this help and exit
--version output version information and exit
SETs are specified as strings of characters. Most represent themselves.
Interpreted sequences are:
\NNN character with octal value NNN (1 to 3 octal digits)
\\ backslash
\a audible BEL
\b backspace
\f form feed
\n new line
\r return
\t horizontal tab
\v vertical tab
CHAR1-CHAR2 all characters from CHAR1 to CHAR2 in ascending order
[CHAR*] in SET2, copies of CHAR until length of SET1
[CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0
[:alnum:] all letters and digits
[:alpha:] all letters
[:blank:] all horizontal whitespace
[:cntrl:] all control characters
[:digit:] all digits
[:graph:] all printable characters, not including space
[:lower:] all lower case letters
[:print:] all printable characters, including space
[:punct:] all punctuation characters
[:space:] all horizontal or vertical whitespace
[:upper:] all upper case letters
[:xdigit:] all hexadecimal digits
[=CHAR=] all characters which are equivalent to CHAR
Translation occurs if -d is not given and both SET1 and SET2 appear.
-t may be used only when translating. SET2 is extended to length of
SET1 by repeating its last character as necessary. Excess characters
of SET2 are ignored. Only [:lower:] and [:upper:] are guaranteed to
expand in ascending order; used in SET2 while translating, they may
only be used in pairs to specify case conversion. -s uses SET1 if not
translating nor deleting; else squeezing uses SET2 and occurs after
translation or deletion.
全是英文逸嘀?翻譯過來看下:
tr [選項]… 集合1 [集合2]
選項說明:
-c, -C, –complement 用集合1中的字符串替換蟀拷,要求字符集為ASCII碰纬。
-d, –delete 刪除集合1中的字符而不是轉(zhuǎn)換
-s, –squeeze-repeats 刪除所有重復(fù)出現(xiàn)字符序列,只保留第一個问芬;即將重復(fù)出現(xiàn)字符串壓縮為一個字符串悦析。
-t, –truncate-set1 先刪除第一字符集較第二字符集多出的字符
字符集合的范圍:
\NNN 八進(jìn)制值的字符 NNN (1 to 3 為八進(jìn)制值的字符)
\\ 反斜杠
\a Ctrl-G 鈴聲
\b Ctrl-H 退格符
\f Ctrl-L 走行換頁
\n Ctrl-J 新行
\r Ctrl-M 回車
\t Ctrl-I tab鍵
\v Ctrl-X 水平制表符
CHAR1-CHAR2 從CHAR1 到 CHAR2的所有字符按照ASCII字符的順序
[CHAR*] in SET2, copies of CHAR until length of SET1
[CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0
[:alnum:] 所有的字母和數(shù)字
[:alpha:] 所有字母
[:blank:] 水平制表符,空白等
[:cntrl:] 所有控制字符
[:digit:] 所有的數(shù)字
[:graph:] 所有可打印字符此衅,不包括空格
[:lower:] 所有的小寫字符
[:print:] 所有可打印字符强戴,包括空格
[:punct:] 所有的標(biāo)點字符
[:space:] 所有的橫向或縱向的空白
[:upper:] 所有大寫字母
tr用來從標(biāo)準(zhǔn)輸入中通過替換或刪除操作進(jìn)行字符轉(zhuǎn)換。tr主要用于刪除文件中控制字符或進(jìn)行字符轉(zhuǎn)換挡鞍。使用tr時要轉(zhuǎn)換兩個字符串:字符串1用于查詢骑歹,字符串2用于處理各種轉(zhuǎn)換。tr剛執(zhí)行時墨微,字符串1中的字符被映射到字符串2中的字符道媚,然后轉(zhuǎn)換操作開始。
通過使用 tr,您可以非常容易地實現(xiàn) sed 的許多最基本功能最域。您可以將 tr 看作為 sed 的(極其)簡化的變體:它可以用一個字符來替換另一個字符谴分,或者可以完全除去一些字符镀脂。您也可以用它來除去重復(fù)字符牺蹄。這就是所有 tr 所能夠做的薄翅。
1、帶有最常用選項的tr命令格式為
tr -c -d -s ["string1_to_translate_from"] ["string2_to_translate_to"] < input-file
這里:
-c 用字符串1中字符集的補集替換此字符集匿刮,要求字符集為ASCII僧凰。
-d 刪除字符串1中所有輸入字符。
-s 刪除所有重復(fù)出現(xiàn)字符序列训措,只保留第一個;即將重復(fù)出現(xiàn)字符串壓縮為一個字符串绩鸣。
input-file是轉(zhuǎn)換文件名。雖然可以使用其他格式輸入纱兑,但這種格式最常用呀闻。
2、字符范圍
指定字符串1或字符串2的內(nèi)容時潜慎,只能使用單字符或字符串范圍或列表。
[a-z] a-z內(nèi)的字符組成的字符串铐炫。
[A-Z] A-Z內(nèi)的字符組成的字符串。
[0-9] 數(shù)字串科贬。
\octal 一個三位的八進(jìn)制數(shù)鳖悠,對應(yīng)有效的ASCII字符。
[On] 表示字符O重復(fù)出現(xiàn)指定次數(shù)n乘综。因此[O2]匹配OO的字符串。
tr中特定控制字符的不同表達(dá)方式
速記符含義八進(jìn)制方式
\a Ctrl-G 鈴聲\007
\b Ctrl-H 退格符\010
\f Ctrl-L 走行換頁\014
\n Ctrl-J 新行\(zhòng)012
\r Ctrl-M 回車\015
\t Ctrl-I tab鍵\011
\v Ctrl-X \030
實例:
1瘾带、將文件file中出現(xiàn)的"abc"替換為"xyz"
[root@Gin scripts]# cat t.txt
abc
[root@Gin scripts]# cat t.txt |tr "abc" "xyz"
xyz
[root@Gin scripts]# cat t.txt
abc
【注意】這里熟菲,凡是在t.txt文件中出現(xiàn)的"a"字母朴恳,都替換成"x"字母,"b"字母替換為"y"字母呆贿,"c"字母替換為"z"字母森渐。而不是將字符串"abc"替換為字符串"xyz"。這里的替換不修改源文件
2同衣、使用tr命令“統(tǒng)一”字母大小寫
[root@Gin scripts]# cat file
abc
[root@Gin scripts]# cat file|tr [a-z] [A-Z]
ABC
大寫轉(zhuǎn)小寫只需要把tr后面的參數(shù)換個位置即可耐齐!
3、把文件中的數(shù)字0-9替換為a-j
[root@Gin scripts]# cat file|tr [0-9] [a-j]
abcdefghij
4埠况、刪除文件file中出現(xiàn)的"Snail"字符
[root@Gin scripts]# cat file
what is Snail
[root@Gin scripts]# cat file|tr -d "Snail"
wht s
[root@Gin scripts]# cat file
what is Snail
【注意】這里,凡是在file文件中出現(xiàn)的'S','n','a','i','l'字符都會被刪除夺衍!而不是緊緊刪除出現(xiàn)的"Snail”字符串喜命。
5、刪除文件file中出現(xiàn)的換行'\n'壁榕、制表'\t'字符
# cat file | tr -d "\n\t"
不可見字符都得用轉(zhuǎn)義字符來表示的,這個都是統(tǒng)一的。
7煎娇、刪除空行
# cat file | tr -s "\n" > new_file
8缓呛、刪除Windows文件“造成”的'^M'字符
# cat file | tr -d "\r"
或者
# cat file | tr -s "\r" "\n"
【注意】這里-s后面是兩個參數(shù)"\r"和"\n",用后者替換前者
9哟绊、用空格符\040替換制表符\011
# cat file | tr -s "\011" "\040"
10、把路徑變量中的冒號":"攀涵,替換成換行符"\n"
# echo $PATH | tr -s ":" "\n"
實際應(yīng)用1,加密解密:
[root@Gin scripts]# echo 12345|tr '0-9' '987654321' ## 加密
87654
[root@Gin scripts]# echo 87654|tr '987654321' '0-9' ## 解密
12345
上面是一個非常有趣的小例子以故,通過映射來實現(xiàn)簡單的加密解密,看懂這個例子炉媒,可以接著往下看古羅馬時期發(fā)明的凱撒加密的一種變體ROT13
[root@Gin scripts]# echo "hi,this is amosli" | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' 'NOPQRSTUVWXYZABCDEFGHIJKLMnopqrstuvwxyzabcdefghijklm'
uv,guvf vf nzbfyv
[root@Gin scripts]# echo "uv,guvf vf nzbfyv" | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' 'NOPQRSTUVWXYZABCDEFGHIJKLMnopqrstuvwxyzabcdefghijklm'
hi,this is amosli
ROT13是它自己本身的逆反昆烁;也就是說,要還原ROT13白粉,套用加密同樣的算法即可得茅郎,故同樣的操作可用再加密與解密。非常神奇系冗!
實際應(yīng)用2,字符集補集:
tr -c [set1] [set2]
set1的補集意味著從這個集合中包含set1中沒有的所有字符惯豆。最典型的用法就是從輸入文本中將不在補集中的所有字符全部刪除奔害。例如:
[root@Gin scripts]# echo "hello 123 world " | tr -d -c '0-9 \n'
123
在這里,補集中包含了除數(shù)字华临、空格字符和換行符之外的所有字符,因為指定了-d揭厚,所以這些字符全部都會被刪除扶供。
實際應(yīng)用3,用tr壓縮字符:
[root@Gin scripts]# echo "GNU is not UNIX . Recursicve right?" | tr -s ' '
GNU is not UNIX . Recursicve right?
使用-s參數(shù)可以壓縮字符串中重復(fù)的字符椿浓∶龌蓿看另一個例子:
[root@Gin scripts]# cat sum.txt
5
4
3
5
4
3
[root@Gin scripts]# cat sum.txt|echo $[ $(tr '\n' '+') 0 ]
24
[root@Gin scripts]# cat sum.txt|echo $[ $(tr '\n' '+') ]
-bash: 5+4+3+5+4+3+ : syntax error: operand expected (error token is "+ ")
這里仙蛉,運用tr實現(xiàn)了加法運算唧垦, tr '\n' '+'使用換行符來替換為'+'然后連接起來,最后多出來一個'+'再接上數(shù)字0即實現(xiàn)了加法振亮。
原文鏈接:https://www.cnblogs.com/ginvip/p/6354440.html