inux下如何统计一个目录下的文件个数以及代码总行数(转)
知道指定后缀名的文件总个数命令:??? ?? find . -name "*.html" | wc -l知道一个目录下代码总行数以及单个文件行数:??? ?? find . -name "*.html" | xargs wc -l