计算每个文件的行数,单独输出代码(以php语言为例): find . -name '*.php' | xargs wc -l 计算该目录下所有文件的代码行数之和(以php语言为例): ( find ./ -name '*.php' -print0 | xargs -0 cat ) | wc -l