当我在 Bash 中运行 history
时,会得到大量的结果(1000 +)。但是,当我运行 history
和 zsh shell 时,我只得到15个结果。这使得在 zsh 中抓取历史记录几乎毫无用处。
我的 .zshrc
文件包含以下几行:
HISTFILE=~/.zhistory
HISTSIZE=SAVEHIST=10000
setopt sharehistory
setopt extendedhistory
我如何修复 zsh 使我的 shell 历史更有用?
更新
如果在 zsh 中调用 history 1
,我将获得所有的历史记录,就像在 Bash 中使用 history
一样。我可以使用别名命令来得到相同的结果,但是我想知道为什么 history
在 zsh 和 Bash 中的行为不同。