miller/scripts/mcountlines
2021-11-11 14:15:13 -05:00

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