码迷,mamicode.com
首页 > 其他好文 > 详细

统计代码行数

时间:2018-05-15 18:31:21      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:inf   color   find   style   option   nts   long   byte   XA   

下面举几个例子:

1.统计当前目录下,py文件数量:

  1. find . -name "*.py" |wc -l

2.统计当前目录下,所有py文件行数:

  1. find . -name "*.py" |xargs cat|wc -l

3.统计当前目录下,所有py文件行数,并过滤空行:

  1. find . -name "*.py" |xargs cat|grep -^$|wc -l
     Usage: wc [OPTION]... [FILE]...
        -c, --bytes, --chars print the byte counts
        -l, --lines print the newline counts
        -L, --max-line-length print the length of the longest line
        -w, --words print the word counts
            --help display this help and exit
            --version output version information and exit

     

统计代码行数

标签:inf   color   find   style   option   nts   long   byte   XA   

原文地址:https://www.cnblogs.com/iceman-/p/9042294.html

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