現在我做這樣的事情:
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