forked from tinygrad/tinygrad
6 lines
198 B
Bash
Executable File
6 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
# switched to cloc due to https://github.com/boyter/scc/issues/379
|
|
cloc --by-file tinygrad/* | grep "tinygrad"
|
|
# also some sloccount for a dir summary
|
|
sloccount tinygrad | grep "python"
|