Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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"