Y
Hacker News
new
|
ask
|
show
|
jobs
by
JSR_FDED
24 days ago
To count lines of rust code:
fd . -e rs -uu | xargs cat | wc -l
Why not just:
find . -name '*.rs' | xargs wc -l
1 comments
cauterize
24 days ago
Or tokei
link