Remix.run Logo
JSR_FDED 4 hours ago

To count lines of rust code:

fd . -e rs -uu | xargs cat | wc -l

Why not just:

find . -name '*.rs' | xargs wc -l

cauterize 2 hours ago | parent [-]

Or tokei