mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-17 16:38:54 +00:00
14 lines
245 B
Bash
Executable file
14 lines
245 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "LINES:"
|
|
wc -l \
|
|
$(find pkg -name '*.go' | grep -v pkg/parsing) pkg/parsing/mlr.bnf \
|
|
| sort -n
|
|
|
|
echo
|
|
echo "CHARACTERS:"
|
|
wc -c \
|
|
$(find pkg -name '*.go' | grep -v pkg/parsing) pkg/parsing/mlr.bnf \
|
|
| sort -n \
|
|
| tail -n 5
|
|
|