summaryrefslogtreecommitdiff
path: root/countlines.sh
blob: 0923ac09018306f44a386c2bf769af6e7acfbb51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
!#/usr/bin/bash

echo "
python code:"
find scripts/populate -name '*.py' | xargs wc -l

echo "
shell script code:"
find scripts -name '*.sh' | xargs wc -l

echo "
rust code:"
find src -name '*.rs' | xargs wc -l

echo