zsh_history는 전부가 아닌 일부 항목만 표시합니다.

zsh_history는 전부가 아닌 일부 항목만 표시합니다.

이유는 모르겠지만 .zsh_history에는 전체가 아닌 일부 항목만 표시됩니다.

shirish@debian ~ % history       
  155  zless changelog.Debian.gz
  156* torbrowser-launcher
  157* apt-cache rdepends libsdl1.2debian
  158* hg clone https://bitbucket.org/allacrost/allacrost
  160  cd Videos
  161  history | grep apg
  162  history | less

이것이 .zshrc에 있는 내용입니다.

% cat .zshrc
# Set up the prompt

autoload -Uz promptinit
promptinit
prompt adam1

setopt histignorealldups sharehistory

# Use emacs keybindings even if our EDITOR is set to vi
bindkey -e

# Keep 10000 lines of history within the shell and save it to ~/.zsh_history:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.zsh_history

# Use modern completion system
autoload -Uz compinit
compinit

zstyle ':completion:*' auto-description 'specify: %d'
zstyle ':completion:*' completer _expand _complete _correct _approximate
zstyle ':completion:*' format 'Completing %d'
zstyle ':completion:*' group-name ''
zstyle ':completion:*' menu select=2
eval "$(dircolors -b)"
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=* l:|=*'
zstyle ':completion:*' menu select=long
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
zstyle ':completion:*' use-compctl false
zstyle ':completion:*' verbose true

zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'

여러 VTE(가상 터미널 에뮬레이터) 또는 zsh 탭이 열려 있습니다. 어쩌면 내가 트릭이나 뭔가를 놓친 것일 수도 있습니다.

레코드 항목 수의 변경을 제외하고는 기본값이 사용됩니다.

저는 Debian에서 테스트하고 있으며 zsh 버전을 사용하고 있습니다.

% zsh --version
zsh 5.4.2 (x86_64-debian-linux-gnu)

업데이트 - 내용은 이렇습니다 -

 ~ % ls -l ~/.zsh_history
-rw------- 1 shirish shirish 6451 Jan  5 20:59 /home/shirish/.zsh_history

답변1

에서는 귀하가 소유한 모든 zsh것이 history기본적으로 표시되지 않으며 .zsh_history표시되어서도 안 됩니다.이 문제: 마지막 15개의 명령만 표시합니다(귀하의 경우 어떤 이유로든 7개). 입력하고 싶은 모든 항목을 표시하려면 history 1다음을 참조하세요.이것.

관련 정보