gpt4 book ai didi

shell - 带参数的 ZSH 别名

转载 作者:行者123 更新时间:2023-11-29 08:40:25 46 4
gpt4 key购买 nike

我正在尝试为我的简单 git add/commit/push 创建一个带参数的别名。

我看到函数可以用作别名,所以我尝试了但没有成功。

之前我有:

alias gitall="git add . ; git commit -m 'update' ; git push"

但我希望能够修改我的提交:

function gitall() {
"git add ."
if [$1 != ""]
"git commit -m $1"
else
"git commit -m 'update'"
fi
"git push"
}

最佳答案

如果出于某种原因你真的需要使用带有参数的别名,你可以通过在你的别名中嵌入一个函数并立即执行它来破解它:

alias example='f() { echo Your arg was $1. };f'

我看到这种方法在 .gitconfig 别名中使用了很多。

关于shell - 带参数的 ZSH 别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34340575/

46 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com