Counting the lines of code in a project (shell)
Subscribe
Pub
Share
like so:
cd ~/src
find . -name "*.java" -exec wc -l {} \; | awk '{ SUM += $1} END { print SUM }'
this is cool...
See more in:
Cool Scala
Subscribe
You need to log in to post a comment!