mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
14 lines
218 B
Bash
Executable file
14 lines
218 B
Bash
Executable file
#!/bin/bash
|
|
|
|
wc -l \
|
|
$(find src -name \*.go | grep -v src/parsing) \
|
|
src/parsing/mlr.bnf \
|
|
| sort -n
|
|
|
|
echo
|
|
wc -c \
|
|
$(find src -name \*.go | grep -v src/parsing) \
|
|
src/parsing/mlr.bnf \
|
|
| sort -n \
|
|
| tail -n 5
|
|
|