免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1568 | 回复: 3
打印 上一主题 下一主题

为什么我的tr只能替换第一个字符? [复制链接]

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-11-18 17:50 |只看该作者 |倒序浏览
我记得以前用同样的写法是能够替换整个字符串的,今天突然不行了,难道我记错了?

  1. bash-2.03# echo "this is a test string" |tr a-z A-Z
  2. this is A test string
  3. bash-2.03#
复制代码


我希望得到这样的效果:
  1. bash-2.03# echo "this is a test string" |tr [:lower:] [:upper:]
  2. THIS IS A TEST STRING
  3. bash-2.03#
复制代码

论坛徽章:
1
数据库技术版块每日发帖之星
日期:2016-01-24 06:20:00
2 [报告]
发表于 2003-11-18 18:03 |只看该作者

为什么我的tr只能替换第一个字符?

  1. $echo "this is a test string"|tr [a-z] [A-Z]
  2. THIS IS A TEST STRING
复制代码

another test:
  1. oracle>echo "this-is-a-test-string,test-z"|tr a-z A" "Z
  2. this is A test string,test Z
复制代码

论坛徽章:
0
3 [报告]
发表于 2003-11-18 19:16 |只看该作者

为什么我的tr只能替换第一个字符?

  1. $echo "this is a test string"|tr a-z A-Z
  2. THIS IS A TEST STRING
复制代码

  1. tr version:
  2. tr (textutils) 2.0.21
复制代码

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
4 [报告]
发表于 2003-11-18 20:22 |只看该作者

为什么我的tr只能替换第一个字符?

man过之后才知道,原来是这样
  1. bash-2.03$ echo "this is a test string" |/usr/xpg4/bin/tr a-z A-Z
  2. THIS IS A TEST STRING
  3. bash-2.03$ which tr
  4. /usr/bin/tr
  5. bash-2.03$ echo "this is a test string" |/usr/bin/tr a-z A-Z
  6. this is A test string
  7. bash-2.03$
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP