miller/go/tools/mcountlines
2021-02-14 01:25:32 -05:00

14 lines
218 B
Bash
Executable file

#!/bin/bash
wc -l \
$(find src -name \*.go | grep -v src/parsing) \
src/parsing/mlr.bnf \
| sort -n
echo
wc -c \
$(find src -name \*.go | grep -v src/parsing) \
src/parsing/mlr.bnf \
| sort -n \
| tail -n 5