统计代码行数

Posted iceman!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计代码行数相关的知识,希望对你有一定的参考价值。

下面举几个例子:

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

     

以上是关于统计代码行数的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu下如何统计代码行数

vscode 代码行数统计 vs2019代码行数统计

gitlab有没有办法一次性统计所有分支的代码行数?

Python实现代码行数统计工具

Git统计代码行数;Java实现统计代码行数,忽略空行注释行

Git统计代码行数;Java实现统计代码行数,忽略空行注释行