summaryrefslogtreecommitdiff
path: root/countlines.sh
diff options
context:
space:
mode:
authorniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2025-01-21 15:52:44 +0100
committerniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2025-01-21 15:52:44 +0100
commitc277e9937115cc1473219a04199566c7bfdcbaf7 (patch)
treec2806eab444269d92c7c22d1165a9686f5edd9de /countlines.sh
parent58515ddfecd3701112616c33ad4879dae4b38ffd (diff)
get, post, put, delete covered
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