Skip to content

Instantly share code, notes, and snippets.

@jruif
Forked from demonnico/statist.sh
Last active September 28, 2017 07:22
Show Gist options
  • Select an option

  • Save jruif/2933a4499ecabf5bf06ac6f33cfab252 to your computer and use it in GitHub Desktop.

Select an option

Save jruif/2933a4499ecabf5bf06ac6f33cfab252 to your computer and use it in GitHub Desktop.
统计项目中代码行数
//.js文件的行数
find . -name "*.js" | xargs wc -l
//.js .jsx .css .scss 文件内容总行数
find . -name "*.js" -or -name "*.jsx" -or -name "*.css" -or -name "*.scss" |xargs grep -v "^$"|wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment