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

Linux——比较实用的shell命令

时间:2018-08-17 16:33:32      阅读:146      评论:0      收藏:0      [点我收藏+]

标签: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

Linux——比较实用的shell命令

标签:grep -v   目录   统计   lin   文件的   tail   代码行数   code   index.php   

原文地址:http://blog.51cto.com/caochun/2161199

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