This commit is contained in:
John Kerl 2020-10-14 09:06:33 -04:00
parent 2efdae215d
commit 4c76a9a6df

7
go/verbs-to-do-lc Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
verbs=$(diff <(mlr -L) <(../c/mlr -L) | grep '>' | nf)
for verb in $verbs; do
wc -l ../c/mapping/mapper_$(echo $verb | sed 's/-/_/g').c
done | sort -n