xvno / blog

个人博客, 不定期发布技术笔记和个人随笔.
0 stars 0 forks source link

Utils: wc/cloc: 统计行数 #98

Open xvno opened 4 years ago

xvno commented 4 years ago

Refs

xvno commented 4 years ago

统计行数

find + wc

find . -name "*.c" -or -name "*.h" | xargs grep -v "^$" | wc -l

cloc

brew install cloc
cloc . --exclude-dir=node_modules