现在我做这样的事情:
cat ~/.oh-my-zsh/plugins/git/git.plugin.zsh | grep alias | grep rebase
例如,搜索具有 rebase 的 git 别名。如何在所有定义别名的插件(或所有我定义的别名?)中搜索关键字?
答案1
从man alias
:
If no operands are given, all alias definitions shall
be written to standard output.
您可以使用alias
。
答案2
由于 @ctx put 是 shell 内置alias
命令,因此将列出您定义的所有别名。
如果你想搜索别名,你可以使用 grep ,例如,如果你想列出所有git
别名:
alias | grep git