shell统计代码行数与大小写转换

发布时间:2019-10-27编辑:脚本学堂
shell统计代码行数,以及shell大小写转换,正则表达式中单词边界用法,需要的朋友参考下。

1、统计代码行数
 

find /a -name "*.c" |xargs cat|grep -v ^$|wc -l
abs P31

正则表达式中单词边界,例子:
 

bash$grep '<the>' textfile

2、大小写转换
 

echo abcd |tr 'a-z' 'A-Z'
echo ABCD |tr 'A-Z' 'a-z'