A tool to summarize the type and amount of code written inside directories and files.
Build linecount
using:
crystal build src/linecount.cr
then run using:
./linecount [flags] [files/directories]
The tool can be executed as is, e.g. by running ./linecount
which will summarize the current directory with recursive descent.
Files can be specified by passing their names as arguments to the call:
./linecount testfile.txt testdir1 testdir2
To specify a maximum recursion depth use the -d
or --depth
flag:
./linecount --depth 2 testdir
Using --depth 0
disables recursion and only examines the files in top-level.
- Fork it (https://github.com/KMilkevych/linecount/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Kostiantyn Milkevych - creator and maintainer
- Peter Pisarczyk - gist containing information on file formats and programming languages