miller/scripts/mcountlines
John Kerl 268a96d002
Export library code in pkg/ (#1391)
* Export library code in `pkg/`

* new doc page
2023-09-10 17:15:13 -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