sh 以递归方式打印项目中的代码行数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 以递归方式打印项目中的代码行数相关的知识,希望对你有一定的参考价值。

# where .py is the extention to search on
( find ./ -name '*.py' -print0 | xargs -0 cat ) | wc -l

# also, 
wc -l **/*rb

# also, this counts every line of every file
grep '' -R . | wc -l 

# wc will print the number of lines in a file or multiple files
wc -l app/controllers/*.rb

以上是关于sh 以递归方式打印项目中的代码行数的主要内容,如果未能解决你的问题,请参考以下文章

sh 以递归方式选择“类型”删除文件

sh 以递归方式从ipynb创建html文件

sh 以递归方式删除node_modules

sh 通过授权以递归方式从网页下载.zip文件

如何以递归方式思考?

sh 计算文件中的行数(例如:代码行)