Bootstrap

开源代码统计工具cloc的简单使用

一.背景

     公司之前开发了个小系统,要去申请著作权,需要填写代码数量。应该怎么统计呢?搜索了一下,还是用开源工具cloc吧!我的操作系统是windows,代码主要是java项目和vue项目。

二.到哪里找

可以去官方下载https://github.com/AlDanial/cloc/releases

或者直接下载我上传的cloc-2.0.2.exe

三.怎么用

     我放在D:\zsp\tools\cloc-2.0.2.exe,我要统计的代码项目目录是C:\Users\Dell\git\mine-vue。我用的windows的cmd,这样输入命令的:


C:\Users\Dell>cd /d D:\zsp\tools

D:\zsp\tools>cloc-2.02.exe C:\Users\Dell\git\mine-vue
     258 text files.
     249 unique files.
      17 files ignored.

github.com/AlDanial/cloc v 2.02  T=0.78 s (317.5 files/s, 29893.2 lines/s)
-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
Vuejs Component                 84            634            773          14036
JavaScript                      95            448            510           4680
SCSS                             9            137             43            920
Markdown                         4            269              0            692
JSON                             2              0              0            121
SVG                             46              0              0             46
Handlebars                       2              6              0             36
CSS                              2              1              0             26
HTML                             1              0              1             14
INI                              1              2              0             12
YAML                             2              4             13             10
Dockerfile                       1              3              4              4
-------------------------------------------------------------------------------
SUM:                           249           1504           1344          20597
-------------------------------------------------------------------------------

D:\zsp\tools>

 详细的使用方法还可以用  cloc-2.0.2.exe --help 查看。

四.参考文章

windows代码量计算开源工具cloc安装和使用教程_cloc下载-CSDN博客

;