Mac OS 下统计代码行数

作为编程人员,项目中的代码行数很有必要。
Windows 下比较成熟的工具较多,而Mac下工具比较少。
这里举几个Mac 下统计代码行数的方法:

自定义脚本:

脚本1:

终端进入目录,输入:

$ find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.h" -or -name "*.rss" ")" -print | xargs wc -l
缺点:

需要自定义脚本:不同的编程语言,有不同的文件后缀名,需要自行配置;
不能过滤掉注释;
不能过滤掉空行

脚本2:

$ find . -name "*.m" -or -name "*.h" -or -name "*.xib" -or -name "*.c" |xargs grep -v "^$"|wc -l

改进:
去掉空行
xargs grep -v "^$"

CLOC:

大家都知道用 wc -l 命令进行代码行数统计,但是它会将代码中的注释、空行所占用的文本行都统计在内。如果想查看一个 tar 包或一个项目目录中“实际”的代码行数并且不愿意自己去写一个脚本来做此类工作,那么可以考虑使用 cloc。

cloc 是一个 perl 脚本,它可以统计很多种编程语言的代码文件中的空行、注释以及实际的代 码行数。

CLOC是Count Lines of Code的意思,可以计算空行数、注释行数、各种语言的有效行数,还可以比较两个代码库在各种行数之间的不同。CLOC是完全由Perl实现的,不依赖第三方组件,移植性强。

下载安装 cloc.

$ brew install cloc
==> Downloading https://downloads.sourceforge.net/project/cloc/cloc/v1.62/cloc-1.62.pl
######################################################################## 100.0%
🍺  /usr/local/Cellar/cloc/1.62: 2 files, 372K, built in 13 seconds

对当前目录进行统计

$ cloc ./
     105 text files.
      89 unique files.
      27 files ignored.

http://cloc.sourceforge.net v 1.62  T=0.37 s (174.4 files/s, 13545.8 lines/s)
-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
Python                          38            480            507           2632
Bourne Shell                    17             82            183            674
HTML                             2             21              1            124
JSON                             1              0              0             99
YAML                             3             18              7             79
Javascript                       3              0             98             43
CSS                              1              0              1              1
-------------------------------------------------------------------------------
SUM:                            65            601            797           3652
-------------------------------------------------------------------------------

优点:
过滤了空行;
区分了注释和代理;
自动识别不同语言;

编写一个java的文件。

filename: test.java

/*************************************************************************
    > File Name: test.java
    > Author:
    > Mail:
    > Created Time: 日  7/23 23:06:09 2017
 ************************************************************************/

public class test


public static void main(String[] args){}
    System.out.println("come into main");

}

重新统计:

$ cloc ./
     106 text files.
      90 unique files.
      27 files ignored.

http://cloc.sourceforge.net v 1.62  T=0.36 s (181.4 files/s, 13940.1 lines/s)
-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
Python                          38            486            508           2632
Bourne Shell                    17             82            183            674
HTML                             2             21              1            124
JSON                             1              0              0             99
YAML                             3             18              7             79
Javascript                       3              0             98             43
Java                             1              4              6              4
CSS                              1              0              1              1
-------------------------------------------------------------------------------
SUM:                            66            611            804           3656
-------------------------------------------------------------------------------

专题

$ cloc --help

Usage: cloc [options] <file(s)/dir(s)> | <set 1> <set 2> | <report files>

 Count, or compute differences of, physical lines of source code in the
 given files (may be archives such as compressed tarballs or zip files)
 and/or recursively below the given directories.

## 统计一个 tar 包中的代码行
$ cloc small-2.0.tar.gz 
      42 text files.
      41 unique files.                              
       4 files ignored.

http://cloc.sourceforge.net v 1.50  T=1.0 s (38.0 files/s, 3451.0 lines/s)
-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
C                               21            435            482           1695
C/C++ Header                     8            102            161            275
m4                               4             18              4            136
make                             4             18             72             29
Bourne Shell                     1              2             20              2
-------------------------------------------------------------------------------
SUM:                            38            575            739           2137
-------------------------------------------------------------------------------



## 统计某个类型的文件
命令:cloc *.c *.h
简介:该命令会统计当前文件夹下所有符合.c和.h的文件。
举例:
$ cloc *.py
       2 text files.
       2 unique files.
       0 files ignored.

http://cloc.sourceforge.net v 1.62  T=0.01 s (270.8 files/s, 9207.8 lines/s)
-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
Python                           2             15              8             45
-------------------------------------------------------------------------------
SUM:                             2             15              8             45
-------------------------------------------------------------------------------

#NOTE:  这里只会统计当前目录下的.py 文件,不会进行递归。

统计结果输出到指定文件:
使用 --report-file 选项。
举例:

 $ cloc ./  -report-file   a.txt
      69 text files.
      60 unique files.
      52 files ignored.
Wrote a.txt

## 统计每个文件的代码数:
使用 --by-file 选项
举例:
$ cloc --by-file my_project/
       2 text files.
       2 unique files.                              
       0 files ignored.

http://cloc.sourceforge.net v 1.60  T=0.01 s (149.5 files/s, 448.6 lines/s)
--------------------------------------------------------------------------------
File                              blank        comment           code
--------------------------------------------------------------------------------
my_project/perl.pl                    1              0              2
my_project/bash.sh                    1              0              2
--------------------------------------------------------------------------------
SUM:                                  2              0              4
--------------------------------------------------------------------------------

查看支持的语言:


$ cloc --show-lang
ABAP                       (abap)
ActionScript               (as)
Ada                        (ada, adb, ads, pad)
ADSO/IDSM                  (adso)
AMPLE                      (ample, dofile, startup)
Ant                        (build.xml, build.xml)
Apex Trigger               (trigger)
Arduino Sketch             (ino, pde)
ASP                        (asa, asp)
ASP.Net                    (asax, ascx, asmx, aspx, master, sitemap, webinfo)
AspectJ                    (aj)
Assembly                   (asm, S, s)
AutoHotkey                 (ahk)
awk                        (awk)
Blade                      (blade.php)
Bourne Again Shell         (bash)
Bourne Shell               (sh)
builder                    (xml.builder)
C                          (c, ec, pgc)
...


$ cloc --show-lang | wc
    195     629    7466


忽略某几个目录:

 --exclude-dir=<D1>[,D2,]  Exclude the given comma separated directories
                             D1, D2, D3, et cetera, from being scanned.  For
                             example  --exclude-dir=.cache,test  will skip
                             all files and subdirectories that have /.cache/
                             or /test/ as their parent directory.
                             Directories named .bzr, .cvs, .hg, .git, and
                             .svn are always excluded.
                             This option only works with individual directory
                             names so including file path separators is not
                             allowed.  Use --fullpath and --not-match-d=<regex>
                             to supply a regex matching multiple subdirectories.


举例:

$ cloc ./   --exclude-dir=docs,tests
 

在windows 下的使用

下载 cloc.exe 文件就可用像 mac 下的 cloc 命令一样使用。

https://blog.csdn.net/liutengteng130/article/details/79696898

【工具篇】Windows下统计代码行数cloc

简介:

csdn 上的一个介绍...

下载路径:
https://sourceforge.net/projects/cloc/

http://cloc.sourceforge.net/

https://sourceforge.net/p/cloc/code/HEAD/tree/trunk/cloc

简介:

官网的旧地址。
cloc is now being developed at https://github.com/AlDanial/cloc 

Legacy releases (1.64 and earlier) can still be found here. 

https://github.com/AlDanial/cloc
简介:

官网。

不同环境下的安装。

npm install -g cloc                    # https://www.npmjs.com/package/cloc
sudo apt-get install cloc              # Debian, Ubuntu
sudo yum install cloc                  # Red Hat, Fedora
sudo dnf install cloc                  # Fedora 22 or later
sudo pacman -S cloc                    # Arch
emerge -av dev-util/cloc               # Gentoo https://packages.gentoo.org/packages/dev-util/cloc
sudo pkg install cloc                  # FreeBSD
sudo port install cloc                 # Mac OS X with MacPorts
brew install cloc                      # Mac OS X with Homebrew
choco install cloc                     # Windows with Chocolatey


官网还推荐了其他代码统计工具:

Sonar
Ohcount
SLOCCount
sclc
USC's CODECOUNT
loc

利用Mac 终端命令统计代码行数
http://blog.csdn.net/colawjy/article/details/46425715
简介:

利用shell命令。

Mac OS 下统计代码行数的工具
http://www.cnblogs.com/wengzilin/p/4580646.html
一个转载:
http://blog.csdn.net/forwardto9/article/details/50389420
简介:

下载安装了cloc.
比较详细的介绍。

Counting lines of code with cloc
https://linuxconfig.org/counting-lines-of-code-with-cloc
简介:

linuxconfig.org  上的内容。

英文文章,解释还是比较全面的。 

有统计 .zip, .tar 的举例,有 `-by-file`的示例。 

http://www.jianshu.com/p/7c23265f0fed
PPRows for Mac
简介:

一作者自己开发的一个图形界面工具。可以体验一下。

github地址:https://github.com/jkpang/PPRows

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,772评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,458评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,610评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,640评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,657评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,590评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,962评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,631评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,870评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,611评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,704评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,386评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,969评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,944评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,179评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,742评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,440评论 2 342

推荐阅读更多精彩内容