mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-19 17:35:16 +00:00
31 lines
494 B
Bash
Executable file
31 lines
494 B
Bash
Executable file
#!/bin/sh
|
|
|
|
wc -l \
|
|
cli/*.[ch] \
|
|
containers/*.[ch] \
|
|
input/*.[ch] \
|
|
lib/*.[ch] \
|
|
dsl/*.[ch] \
|
|
mapping/*.[ch] \
|
|
output/*.[ch] \
|
|
stream/*.[ch] \
|
|
unit_test/*.[ch] \
|
|
parsing/mlr*.[ly] \
|
|
parsing/mlr*wrapper*.[ch] \
|
|
| sort -n
|
|
|
|
echo
|
|
wc -c \
|
|
cli/*.[ch] \
|
|
containers/*.[ch] \
|
|
input/*.[ch] \
|
|
lib/*.[ch] \
|
|
dsl/*.[ch] \
|
|
mapping/*.[ch] \
|
|
output/*.[ch] \
|
|
stream/*.[ch] \
|
|
unit_test/*.[ch] \
|
|
parsing/mlr*.[ly] \
|
|
parsing/mlr*wrapper*.[ch] \
|
|
| sort -n | tail -n 5
|
|
|