mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-06-24 02:14:17 +00:00
5 lines
198 B
Bash
Executable file
5 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"
|