我正在尝试为我的xcode代码获取代码行统计信息。为此,我在终端中执行了以下命令以获取所有可能的代码。
find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.h" -or -name "*.xml" ")" -print0 | xargs -0 wc -l | sort
它还为我提供了包含注释的代码行数。任何人都可以告诉我如何获得没有评论的代码统计信息。
答案 0 :(得分:1)
考虑使用cloc
,这会给你一个很好的输出,如:
7892 text files.
4289 unique files.
9574 files ignored.
http://cloc.sourceforge.net v 1.56 T=58.0 s (43.9 files/s, 7442.5 lines/s)
--------------------------------------------------------------------------------
Language files blank comment code
--------------------------------------------------------------------------------
Objective C 872 44323 20568 198133
HTML 34 1032 8 76432
C/C++ Header 908 16427 35415 19872
D 684 0 0 8299
C 8 889 534 4040
MUMPS 3 618 0 2781
Bourne Shell 18 175 327 622
Ruby 2 87 15 380
XML 10 0 0 264
CSS 1 41 8 219
Python 1 9 16 41
Objective C++ 2 15 12 26
Bourne Again Shell 1 4 4 10
YAML 1 0 0 9
make 1 2 0 7
--------------------------------------------------------------------------------
SUM: 2546 63622 56907 311135
--------------------------------------------------------------------------------