Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mneedham/code-stats
Some useful commands for finding code stats on the shell
https://github.com/mneedham/code-stats
Last synced: 12 days 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 (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-07-18T22:31:28.000Z (over 13 years ago)
- Last Synced: 2024-04-14T09:10:03.549Z (9 months ago)
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 3
- 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"