https://github.com/mneedham/code-stats
Some useful commands for finding code stats on the shell
https://github.com/mneedham/code-stats
Last synced: 4 months ago
JSON representation
Some useful commands for finding code stats on the shell
- Host: GitHub
- URL: https://github.com/mneedham/code-stats
- Owner: mneedham
- Created: 2011-07-18T22:24:50.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2011-07-18T22:31:28.000Z (almost 15 years ago)
- Last Synced: 2025-07-12T20:03:02.643Z (11 months ago)
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
function lines_of_scala_code {
find . | ack -v .git | xargs file | ack -v directory | cut -d":" -f1 | ack ".scala$" | ack $1 | xargs cat | wc -l
}
# lines_of_scala_code "src/main"