一、使用tr命令
1 2 3 4 |
> echo True | tr '[A-Z]' '[a-z]' # 转小写 true > echo True | tr '[a-z]' '[A-Z]' # 转大写 TRUE |
二、使用typeset
1 2 3 4 |
> typeset -u xxx; xxx=True; echo $xxx # 转大写 TRUE > typeset -l xxx; xxx=True; echo $xxx # 转小写 true |
三、使用sed命令
1 2 3 4 |
> echo True | sed 's/[a-z]/\u&/g' - # 转小写 TRUE > echo True | sed 's/[A-Z]/\l&/g' - # 转大写 true |
1F
3 使用sed命令 大小写注释反了