我经常写ccclear而不是清楚.
是否可以在别名中使用正则表达式?就像是 :
alias c\+lear='clear'
没有.
原文链接:https://www.f2er.com/bash/383465.html别名运行简单的前缀替换,并且对于其他很多东西都不够强大.
但是,在Bash 4中,您可以使用一个名为command_not_found_handle的函数来触发此情况并运行您选择的逻辑.
command_not_found_handle() { if [[ $1 =~ ^c+lear$]]; then clear else return 127 fi }
如果您碰巧使用zsh,则必须将该函数调用为command_not_found_handler.
如果您希望能够动态添加新映射:
declare -A common_typos=() common_typos['^c+lear$']=clear command_not_found_handle() { local cmd=$1; shift for regex in "${!common_typos[@]}"; do if [[ $cmd =~ $regex ]]; then "${common_typos[$regex]}" "$@" return fi done return 127 }
common_typos['^ls+$']=ls