Skip to content

Instantly share code, notes, and snippets.

@Frodox
Last active August 29, 2015 14:01
Show Gist options
  • Save Frodox/da942cbb33a64a7f23b1 to your computer and use it in GitHub Desktop.
Save Frodox/da942cbb33a64a7f23b1 to your computer and use it in GitHub Desktop.
some cnippets, except stared snippets, how to count code lines in folder (project)
wc -l find . -iname "*.php"
find -name *.php | xargs cat | wc -l
http://cloc.sourceforge.net/
---
find . -regex '.+\.cc$' | xargs cat | wc
is the same as
find . -regex '.+\.cc$' | xargs wc
and
cat *.java | grep '[;{]' | wc -l
is the same as
grep '[;{]' *.java | wc -l
or even
grep -c '[;{]' *.java
One rarely needs to use cat.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment