From 56f70f1c04260c1e0e3be48abcc1ea4e6efd5640 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 1 Apr 2026 16:32:22 +0000 Subject: [PATCH] Fix duplicate word "code code" typo in error message The error message in check_grep_status() said "Exiting with code code" instead of "Exiting with code". https://claude.ai/code/session_01BXLzzpcfoFQvHLgNs23RvL --- usr/bin/grep-find-unicode-wrapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/bin/grep-find-unicode-wrapper b/usr/bin/grep-find-unicode-wrapper index 1bf188e4..08b304e1 100755 --- a/usr/bin/grep-find-unicode-wrapper +++ b/usr/bin/grep-find-unicode-wrapper @@ -16,7 +16,7 @@ check_grep_status() { elif [ "$1" = "1" ]; then true "$0: INFO: No match." else - printf '%s\n' "$0: ERROR: grep (syntax?) error! Exiting with code code '$1'." >&2 + printf '%s\n' "$0: ERROR: grep (syntax?) error! Exiting with code '$1'." >&2 exit "$1" fi }