统计目标文件夹下的文本行数

统计所有文件类型

find . -type f \( ! -name ".*" \) | xargs wc -l

统计指定文件类型 如txt

find . -type f \( ! -name ".txt" \) | xargs wc -l