Zsh
如何搜尋我的 zsh 別名?
現在我做這樣的事情:
cat ~/.oh-my-zsh/plugins/git/git.plugin.zsh | grep alias | grep rebase
例如,搜尋具有變基的 git 別名。如何在所有定義別名的外掛(或通過我定義的所有別名?)中搜尋關鍵字?
來自
man alias
:If no operands are given, all alias definitions shall be written to standard output.
您可以使用
alias
.
由於@ctx puts 是shell 內置
alias
命令,因此將列出您定義的所有別名。如果要搜尋別名,可以使用 grep ,例如,如果要列出所有
git
別名:alias | grep git