mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
14 lines
210 B
Bash
Executable file
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
|
|
|