summaryrefslogtreecommitdiff
path: root/countlines.sh
diff options
context:
space:
mode:
Diffstat (limited to 'countlines.sh')
-rwxr-xr-xcountlines.sh15
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