ШШ 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.sh
或source /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
。
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.sh
或source /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
。