Skip to content

Instantly share code, notes, and snippets.

@demonnico
Created June 14, 2013 07:37
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save demonnico/5780129 to your computer and use it in GitHub Desktop.
Save demonnico/5780129 to your computer and use it in GitHub Desktop.
统计项目中代码行数
//.m文件的行数
find . -name "*.m" | xargs wc -l
//.m .h .xib .c 文件内容总行数
find . -name "*.m" -or -name "*.h" -or -name "*.xib" -or -name "*.c" |xargs grep -v "^$"|wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment