标签: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
标签:find 空行 linu nbsp bsp 代码 gre linux XA
原文地址:https://www.cnblogs.com/yangcclg/p/9017768.html