From 438901f51116b7ec72d17cab1980d364b556e73f Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Sun, 5 Nov 2023 17:41:06 +0100 Subject: bin/grepc: srcfix (Escape '?' in bash(1) case following getopts(1)) Signed-off-by: Alejandro Colomar --- bin/grepc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/grepc b/bin/grepc index af6b600..b340c65 100755 --- a/bin/grepc +++ b/bin/grepc @@ -128,7 +128,7 @@ grepc_parse_cmd() esac; t='yes'; ;; - ?) + \?) exit 1; # getopts(1) prints an error msg. ;; esac; -- cgit v1.2.3