摘要:
```bash
#输出排序后文件名
file='find . -name "*.[ch]" | sort'
#统计文件个数
filecnt='find . -name "*.[ch]" | wc -l'
#simple,统计所有行数
simple='find . -name "*.[ch]" | xargs cat|wc -l'
#emptylines,统计除了空行 exclude the emp... 阅读全文
posted @ 2017-02-13 09:43
起风啦
阅读(844)
评论(0)
推荐(0)