• centos 安装cloc 代码统计工具


    # 下载
    https://jaist.dl.sourceforge.net/project/cloc/cloc/v1.64/cloc-1.64.tar.gz
    # 配置
    ## 解压
    tar zxvf cloc-1.64.tar.gz
    ## 配置环境变量
    vi /etc/profile
    export PATH=$PATH:/usr/local/src/cloc-1.64
    ## 生效配置文件
    source /etc/profile
    

    效果如下
    统计k8s代码

    [root@k8s-study kubernetes]# cloc .
    Digest::MD5 not installed; will skip file uniqueness checks.
       19901 text files.
       19831 unique files.                                          
        2632 files ignored.
    
    http://cloc.sourceforge.net v 1.64  T=91.73 s (188.8 files/s, 64775.8 lines/s)
    --------------------------------------------------------------------------------
    Language                      files          blank        comment           code
    --------------------------------------------------------------------------------
    Go                            14990         478788         826813        3616860
    JSON                            536              4              0         749841
    YAML                           1129           1202           1397         157269
    Bourne Shell                    336           6115          12090          30087
    Assembly                        108           1992           2613          11261
    Protocol Buffers                115           5302          17494          10530
    make                             66            526           1199           1937
    C/C++ Header                      1            399           4367            839
    Bourne Again Shell               14             91             74            777
    Lua                               1             30              4            475
    sed                               6              4             32            448
    Python                            7            119            157            412
    PowerShell                        3             41             80            176
    C                                 7             49             79            156
    HTML                              4              0              0              4
    --------------------------------------------------------------------------------
    SUM:                          17323         494662         866399        4581072
    --------------------------------------------------------------------------------
    [root@k8s-study kubernetes]#
    
  • 相关阅读:
    了解AOP
    Struts2 拦截器与Spring AOP的区别
    Spring核心技术之IoC和AOP
    产品经理历险记-2-如何把需求聊得更细
    产品经理历险记-1-记录一次事故
    C# 使用 Lotus notes 公共邮箱发送邮件
    设计模式 5/23 原型模式
    设计模式 4/23 建造者模式
    设计模式 3/23 抽象工厂模式
    设计模式 2/23 工厂模式(二)
  • 原文地址:https://www.cnblogs.com/fb010001/p/14889252.html
Copyright © 2020-2023  润新知