From cef76cd1b0ae32ba1d9733c9d09d62de24559743 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 29 Jul 2023 08:52:48 -0300 Subject: bin/*: Add matching parenthesis to case clauses --- bin/highlight | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'bin/highlight') diff --git a/bin/highlight b/bin/highlight index 70cf5ff..cefd37d 100755 --- a/bin/highlight +++ b/bin/highlight @@ -40,36 +40,36 @@ help() { for flag in "$@"; do case "$flag" in - --) + (--) break ;; - --help) + (--help) usage help exit ;; - *) + (*) ;; esac done while getopts 'n:e:f:h' flag; do case "$flag" in - n) + (n) LINE_NUMBER="$OPTARG" ;; - e) + (e) PATTERN="$OPTARG" ;; - f) + (f) FILENAME="$OPTARG" ;; - h) + (h) usage help exit ;; - *) + (*) usage >&2 exit 2 ;; -- cgit v1.2.3