miller/scripts/mcountlines
2023-09-10 15:40:24 -04:00

14 lines
210 B
Bash
Executable file

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