From c277e9937115cc1473219a04199566c7bfdcbaf7 Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Tue, 21 Jan 2025 15:52:44 +0100 Subject: get, post, put, delete covered --- countlines.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 countlines.sh (limited to 'countlines.sh') 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 -- cgit v1.2.3