You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alias mysql="/opt/homebrew/opt/mysql-client@8.4/bin/mysql"
40
42
alias mysqldump="/opt/homebrew/opt/mysql-client@8.4/bin/mysqldump"
41
43
44
+
### logging commands
42
45
preexec() {
43
-
if [[ "$1"=~ ^(aws|brew|curl|docker|fd|git|go|helm|http|istioctl|jar|java|jcmd|jq|jstack|kubectl|kustomize|make|python3|rg|sudo|tekton|vault|xargs).* ]];then
44
-
echo"+ $1"
45
-
fi
46
+
local TARGET_COMMANDS="aws|bat|brew|curl|docker|fd|git|go|helm|http|istioctl|jar|java|jcmd|jq|jstack|kubectl|kustomize|make|python3|rg|sudo|tekton|vault|xargs"
47
+
local command=${1}
48
+
local command_base=${command%%*}
49
+
local command_rest=${command#"${command_base}"}
50
+
local actual_command=$(whence -- "${command_base}"||echo"${command_base}")
0 commit comments