1

我正在尝试获取我的 xcode 代码的代码行统计信息。为此,我在终端中执行了以下命令以获取所有可能的代码。

find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.h" -or -name "*.xml" ")" -print0 | xargs -0 wc -l | sort

它还给了我包括注释在内的代码行数。谁能告诉我如何在没有注释的情况下获取代码行统计信息。

4

1 回答 1

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
--------------------------------------------------------------------------------
于 2013-07-10T10:20:16.747 回答