码迷,mamicode.com
首页 > 系统相关 > 详细

Shell碎碎念

时间:2014-10-15 13:35:43      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   strong   sp   on   bs   new   as   

1. 字符串如何大小写转换

str="This is a Bash Shell script."

1> tr方式     

newstr=`tr ‘[A-Z]‘ ‘[a-z]‘ <<<"$str"`或者 newstr=$(echo $str |tr ‘[a-z]‘ ‘[A-Z]‘)

2> typeset 

typeset -u VARIABLE (把VARIABLE的小写转换成大写)

typeset -l VARIABLE (把VARIABLE的大写转换成小写)

如:

[oracle@node3 ~]$ typeset -u str
[oracle@node3 ~]$ str="This is a Bash Shell script."
[oracle@node3 ~]$ echo $str
THIS IS A BASH SHELL SCRIPT.

 

Shell碎碎念

标签:style   color   ar   strong   sp   on   bs   new   as   

原文地址:http://www.cnblogs.com/ivictor/p/4025760.html

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