ШШ w=10=sh

ZSH "command not found: z"

iterm2 ohmyzsh

在'zsh'中我无法使用'z'搜索文件夹,出现command not found: z

我尝试运行

source "$(brew --prefix)/etc/profile.d/z.sh"

来源/usr/local/etc/profile.d/z.sh

但是不起作用

我明白了!,

第一个:

vim ~/.zshrc

plugins=(
    git
    z
)

退出:x!

和运行

source ~/.zshrc

另一种可能,unalias -a放在source /path/to/z.shsource /path/to/oh-my-zsh.sh下面,因为z_z

的别名
$ type z
z is an alias for _z 2>&1

所以,去掉unalias -a(或者注释掉这一行)

或放在source /path/to/oh-my-zsh.sh(或source /path/to/z.sh)之上。例如:

unalias -a
source $ZSH/oh-my-zsh.sh

或在 .zshrc 文件末尾添加 source $ZSH/oh-my-zsh.sh