mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 10:15:36 +00:00
12 lines
212 B
Bash
Executable file
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
|
|
|