标签:grep -v 目录 统计 lin 文件的 tail 代码行数 code index.php
1)统计当前目录下的index.php文件的行数[root@huanqiu_web1 ~]# cat index.php |wc -l
17
2)统计web目录下,js文件数量:
[root@huanqiu_web1 ~]# find web/ -name "*.js" |wc -l
3)统计web目录下所有js文件代码行数:
[root@huanqiu_web1 ~]# find web/ -name "*.js" |xargs cat|wc -l 或 wc -l `find web/ -name "*.js"`|tail -n1
4)统计web目录下所有js文件代码行数,过滤了空行:
`[root@huanqiu_web1 ~]# find web/ -name "*.js" |xargs cat|grep -v ^$|wc -l``
5)统计web目录下所有js文件代码行数。过滤注释行[root@huanqiu_web1 ~]# find web/ -name "*.js" |xargs cat|grep -v -e ^$ -e ^\s*\/\/.*$|wc -l
标签:grep -v 目录 统计 lin 文件的 tail 代码行数 code index.php
原文地址:http://blog.51cto.com/caochun/2161199