发布网友
共2个回答
热心网友
当前目录下都是文本文件吗?
$ for file in `find . -type f`;do echo $file `wc -l $file|awk '{print $1}'`;done
热心网友
find . |xargs wc -l