From e50fe33459da3a6aa4bd4d8238ec5582f69f239d Mon Sep 17 00:00:00 2001 From: serr Date: Sun, 13 Apr 2025 17:22:20 +0300 Subject: [PATCH] small change --- eye.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eye.sh b/eye.sh index a759f60..910b527 100755 --- a/eye.sh +++ b/eye.sh @@ -81,7 +81,7 @@ main() { LAST_COUNTS["$target"]=1 elif [ -d "$target" ]; then LAST_MODS["$target"]=0 - LAST_COUNTS["$target"]=$(find "$target" -type f 2>/dev/null | wc -l) + LAST_COUNTS["$target"]=$(find "$target" -type f | wc -l) fi blue "started watching \033[94m$target\033[0m" done