mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-09 06:58:11 -05:00
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"
|