From bff87bd4e4c0063d02ff8e0f1dcd1f694f52550d Mon Sep 17 00:00:00 2001
From: sanj <67624670+iodrift@users.noreply.github.com>
Date: Fri, 17 Jan 2025 12:05:35 -0800
Subject: [PATCH] Auto-update: Fri Jan 17 12:05:35 PST 2025

---
 README.md                | 27 +++++++++++++++++++++++++++
 linecounter => linecount |  0
 2 files changed, 27 insertions(+)
 rename linecounter => linecount (100%)

diff --git a/README.md b/README.md
index d4d3752..22531b7 100644
--- a/README.md
+++ b/README.md
@@ -137,6 +137,33 @@ Automatically corrects common package names:
 
 ---
 
+## 📏 linecount - Line Counting Tool for Text Files
+
+Recursively counts the total lines in all text files within the current directory, with optional filtering by file extensions.
+
+### Usage
+```bash
+linecount [<extension1> <extension2> ...]
+```
+
+### Examples
+```bash
+linecount            # Count lines in all non-binary files
+linecount .py .sh    # Count lines only in .py and .sh files
+```
+
+### Key Features
+- **Recursive Search**: Processes files in the current directory and all subdirectories.
+- **Binary File Detection**: Automatically skips binary files.
+- **File Extension Filtering**: Optionally count lines in specific file types (case-insensitive).
+- **Quick Stats**: Displays the number of files scanned and total lines.
+
+### Notes
+- If no extensions are provided, all non-binary files are counted.
+- Use absolute or relative paths when running the script in custom environments.
+
+--- 
+
 ## 🔒 vpn - Tailscale Exit Node Manager
 
 Privacy-focused Tailscale exit node management with automated logging.
diff --git a/linecounter b/linecount
similarity index 100%
rename from linecounter
rename to linecount