传递参数别名bash

时间:2016-09-13 13:19:40

标签: bash alias

是否可以执行以下操作:

我想运行以下内容:

push 'foo'

我需要执行:

git commit -m 'foo' && git push origin master && cap production deploy

1 个答案:

答案 0 :(得分:1)

您可以使用shell函数而不是别名:

push() {
    git commit -m "$1" && git push origin master && cap production deploy
}