linux shell,tr命令

來源:互聯網
上載者:User

1、說明

tr - translate or delete characters

tr [OPTION]... SET1 [SET2]

Translate, squeeze, and/or delete characters from standard input, writing to standard output.SETs are specified as strings of characters.

tr 用來從標準輸入中通過替換或刪除操作進行字元轉換。使用tr時要提供兩個字串:SET1用於查詢,SET2用於處理轉換。tr執行時,字串1中的字元被映射到字串2中的字元,然後執行轉換操作。

2、option

-c 要求字元集為ASCII。用SET2替換SET1中字元集的補集,也就是用set2中字元替換不在set1中的字元

-d 刪除SET1中所有輸入字元。

-s 刪除所有重複出現字元序列,只保留第一個

Translation occurs if -d is not given and both SET1 and SET2 appear.

3、字元範圍

[a-z]:[A-Z]:[0-9]:數字串

\octal:一個三位的八位元,對應有效ASCII字元

[CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octal if starting with 0

4、樣本

1)去除重複的字元

tr -s "[a-z]" < example.txt

cat example.txt | tr -s "[a-z]"

2)刪除空行

cat example.txt | tr -s "[\n]"

3)小寫到大寫

cat example.txt | tr "[a-z]" "[A-Z]"

cat example.txt | tr "[:lower:]" "[:upper:]"

4)替換

cat /etc/passwd | tr -s "[:]" "[\t]"

5)tr -s "[\n]" <test>test11 //輸入檔案是test,輸出檔案是test1

6)cat test.txt | tr -d "[0-9][: ]" //刪除數字字元和冒號

7)cat test.txt | tr -cs  "[a-z][A-Z]" "\n"  //-c:用分行符號替換掉除了字母外的所有字元;-s:刪除多餘的分行符號

5、通過tr實現的功能,都可以通過sed實現。大小寫字母的轉換,刪除不需要的字元比較常用

參考

【1】 http://blog.chinaunix.net/space.php?uid=1813014&do=blog&cuid=364891

【2】 http://unix-cd.com/vc/www/39/2007-11/9971.html

【3】 http://bbs.chinaunix.net/thread-2106256-1-1.html

http://blog.chinaunix.net/space.php?uid=1813014&do=blog&cuid=364891

【4】 http://www.2cto.com/os/201109/104590.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.