Tag Archives: Scripting

Count Lines of Java Code Across Packages

This little command will add up the lines of code across packages in a Java program. 1find . -name "*.java" -exec wc -l {} \+