mirror of
https://github.com/johnkerl/miller.git
synced 2026-08-04 21:43:38 +00:00
6 lines
126 B
Bash
Executable file
6 lines
126 B
Bash
Executable file
#!/bin/bash
|
|
|
|
wc -l \
|
|
$(find src/miller -name \*.go | grep -v src/miller/parsing) \
|
|
src/miller/parsing/mlr.bnf \
|
|
| sort -n
|