diff options
author | EuAndreh <eu@euandre.org> | 2023-07-29 08:52:48 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-07-29 08:52:48 -0300 |
commit | cef76cd1b0ae32ba1d9733c9d09d62de24559743 (patch) | |
tree | 8922a05e83d3b1ea2e98660ed843606ee8046853 /bin/color | |
parent | etc/sh/rc: When X is available, set the keyboard "Insert" key (diff) | |
download | dotfiles-cef76cd1b0ae32ba1d9733c9d09d62de24559743.tar.gz dotfiles-cef76cd1b0ae32ba1d9733c9d09d62de24559743.tar.xz |
bin/*: Add matching parenthesis to case clauses
Diffstat (limited to 'bin/color')
-rwxr-xr-x | bin/color | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -169,15 +169,15 @@ list_colors() { for flag in "$@"; do case "$flag" in - --) + (--) break ;; - --help) + (--help) usage help exit ;; - *) + (*) ;; esac done @@ -185,7 +185,7 @@ done COLOR_FN='' while getopts 'c:h' flag; do case "$flag" in - c) + (c) EXISTS=false for c in $COLOR_LIST; do if [ "$OPTARG" = "$c" ]; then @@ -199,12 +199,12 @@ while getopts 'c:h' flag; do fi COLOR_FN="$OPTARG" ;; - h) + (h) usage help exit ;; - *) + (*) usage >&2 exit 2 ;; |