22

在 ZSH 中做一个单词别名很容易。

alias ll='ls -lah'

有没有办法用 Zsh 做两个词的别名,以便两个词都被解析为同一个别名的一部分?我主要想用它来修复错字。

alias 'gits t'='git st'
4

2 回答 2

7

试试这个:

alias func='gits t'
func() {
    'gits t'='git st'
}

有关Zsh别名函数的更多信息:

于 2012-07-08T02:37:25.997 回答
3

与普通 bash 相同:

$ cd
$ vim .zshrc
...
tg() {
    if [ -z "$1" ]; then
        echo "Use correct second argument: apply/destroy/plan/etc"
    else
        if [ "$1" = "0all" ]; then
            terragrunt destroy -auto-approve && terragrunt apply -auto-approve
        elif [ "$1" = "0apply" ]; then
            terragrunt apply -auto-approve
        elif [ "$1" = "0destroy" ]; then
            terragrunt destroy -auto-approve
        else
            terragrunt "$@"
        fi
    fi
}
...

不要忘记重新读取文件:

$ source .zshrc

使用后,例如:

$ tg 0apply
于 2020-03-24T22:53:29.390 回答