如何计算在python项目中包含多个子目录的项目中写入的行数。例如,dir结构就像
A
\ <*some files here*>\
B
\ <*some files here*>\ ... and so on...
答案 0 :(得分:11)
您可以在linux中使用find实用程序。
在命令提示符下:
$ find <project_directory_path> -name '*.py' | xargs wc -l
这将为您提供project_directory中以.py结尾的所有文件的计数,最后是总计。 (我假设你只想要计算.py文件)
如果您只想要总数而不需要其他内容,可以使用:
$ find <project_directory_path> -name '*.py' | xargs wc -l | tail -1