美文网首页
代码统计

代码统计

作者: 14px | 来源:发表于2018-10-23 17:02 被阅读0次

    js代码多少行

    find . -type f -iname "*.js" -exec cat {} \; | grep -v '^$' | wc -l 
    

    less代码多少行

    find . -type f -iname "*.less" -exec cat {} \; | grep -v '^$' | wc -l 
    

    java代码多少行

    find . -type f -iname "*.java" -exec cat {} \; | grep -v '^$' | wc -l 
    

    相关文章

      网友评论

          本文标题:代码统计

          本文链接:https://www.haomeiwen.com/subject/ekmazftx.html