From 69ca7e97739e81a40624092de9e980f3bde3a14c Mon Sep 17 00:00:00 2001 From: "dylan.araps@gmail.com" Date: Mon, 3 Feb 2020 09:02:04 +0000 Subject: kiss: cleanup FossilOrigin-Name: 47c95eefee1017b5752c7faa0434fbb5146463a79865551b20ae20f43ffb85f1 --- kiss | 33 ++++++++------------------------- 1 file changed, 8 insertions(+), 25 deletions(-) diff --git a/kiss b/kiss index 3b7e318..f776feb 100755 --- a/kiss +++ b/kiss @@ -1130,16 +1130,10 @@ args() { # # This handles the globbing characters '*', '!', '[' and ']' as per: # https://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html - case $action in - a|alternatives|s|search) ;; - - *) - case $@ in - *'*'*|*'!'*|*'['*|*']'*) - die "Arguments contain invalid characters: '!*[]'" - ;; - esac - esac + [ "${action#[as]*}" ] && + case $@ in *'*'*|*'!'*|*'['*|*']'*) + die "Arguments contain invalid characters: '!*[]'" + esac # Parse some arguments earlier to remove the need to duplicate code. case $action in @@ -1260,21 +1254,10 @@ args() { done ;; - l|list) - pkg_list "$@" - ;; - - u|update) - pkg_updates - ;; - - s|search) - for pkg; do pkg_find "$pkg" all; done - ;; - - v|version|-v|--version) - log kiss 1.1.7 - ;; + l|list) pkg_list "$@" ;; + u|update) pkg_updates ;; + s|search) for pkg; do pkg_find "$pkg" all; done ;; + v|version) log kiss 1.1.7 ;; h|help|-h|--help|'') log 'kiss [a|b|c|i|l|r|s|u|v] [pkg] [pkg] [pkg]' -- cgit v1.2.3