码迷,mamicode.com
首页 > 其他好文 > 详细

tr的用法

时间:2016-02-01 01:56:28      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

一、tr的基本功能

功能:转换、挤压或删除字符串,从标准输入接收输入,输出到标准输出
基本用法:tr [options] string1 [string2]

二、例子

1、转换

$ echo "CDImage.CUE" | tr [A-Z] [a-z]
CDImage.cue

$ echo hi there | tr ‘[:lower:]‘ ‘[:upper:]‘
HI THERE

2、删除

$ echo "hello, world" | tr -d ‘ ‘
hello,world

$ echo "If you can read this, you can spot the missing vowels!" | tr -d ‘aeiou‘
If y cn rd ths, y cn spt th mssng vwls!

3、替换并挤压去重

$ echo "hellooooooo,world" | tr -s ‘o‘ //只挤压去重
hello,world

$ echo "tennessee" | tr -s ‘tnse‘ ‘srne‘ //先挤压去重->tenese,再转换->serene
serene

tr的用法

标签:

原文地址:http://www.cnblogs.com/pandachen/p/5174168.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!