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

linux统计文件个数及代码总行数

时间:2018-05-10 11:34:16      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:find   空行   linu   nbsp   bsp   代码   gre   linux   XA   

1.统计demo目录下,js文件数量:

find demo/ -name "*.js" |wc -l
2.统计demo目录下所有js文件代码行数:

find demo/ -name "*.js" |xargs cat|wc -l 或 wc -l `find ./ -name "*.js"`|tail -n1
3.统计demo目录下所有js文件代码行数,过滤了空行:

find /demo -name "*.js" |xargs cat|grep -v ^$|wc -l

linux统计文件个数及代码总行数

标签:find   空行   linu   nbsp   bsp   代码   gre   linux   XA   

原文地址:https://www.cnblogs.com/yangcclg/p/9017768.html

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