From 074ed56304d1f8bde3d80322ebda664fb48590fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Grodzi=C5=84ski?= Date: Fri, 1 Aug 2025 12:47:00 +0900 Subject: [PATCH] Added script --- lines_count.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 lines_count.sh diff --git a/lines_count.sh b/lines_count.sh new file mode 100755 index 0000000..821501f --- /dev/null +++ b/lines_count.sh @@ -0,0 +1,2 @@ +#!/bin/bash +find . \( -name "*.h" -o -name "*.cpp" \) -print0 | xargs -0 wc -l