지금은 다음과 같은 작업을 수행합니다.
cat ~/.oh-my-zsh/plugins/git/git.plugin.zsh | grep alias | grep rebase
예를 들어 리베이스가 있는 git 별칭을 검색합니다. 키워드에 대한 별칭을 정의하는 모든 플러그인(또는 내가 정의한 모든 별칭)을 통해 검색하려면 어떻게 해야 합니까?
답변1
에서 man alias
:
If no operands are given, all alias definitions shall
be written to standard output.
당신이 사용할 수있는 alias
.
답변2
@ctx puts는 쉘 내장 alias
명령으로 정의한 모든 별칭을 나열합니다.
별칭을 검색하려면 grep을 사용할 수 있습니다. 예를 들어 모든 git
별칭을 나열하려는 경우:
alias | grep git