miller/scripts/mcountlines
2023-12-13 17:58:07 -05:00

12 lines
212 B
Bash
Executable file

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