diff options
Diffstat (limited to 'countlines.sh')
-rwxr-xr-x | countlines.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/countlines.sh b/countlines.sh new file mode 100755 index 0000000..0923ac0 --- /dev/null +++ b/countlines.sh @@ -0,0 +1,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 |