2017-11-09 1 views
0

오늘 저는 Mac에서 bash에서 zsh (+ oh-my-zsh)로 전환했습니다. bash에서 나는 30k 개 이상의 항목으로 .bash_eternal_history을 보관했습니다. 나는 이것을 .zsh_history 파일과 포맷으로 옮겼다. zsh는 SAVEHIST 크기를 무시합니다.

는 지금은 ([1]에서 촬영) zsh을에서 영원한 역사를 유지하기 위해이 바르를 설정합니다

HISTFILE="$HOME/.zsh_history" 
HISTSIZE=10000000 
SAVEHIST=10000000 
setopt BANG_HIST     # Treat the '!' character specially during expansion. 
setopt EXTENDED_HISTORY   # Write the history file in the ":start:elapsed;command" format. 
setopt INC_APPEND_HISTORY  # Write to the history file immediately, not when the shell exits. 
setopt SHARE_HISTORY    # Share history between all sessions. 
setopt HIST_EXPIRE_DUPS_FIRST # Expire duplicate entries first when trimming history. 
setopt HIST_IGNORE_DUPS   # Don't record an entry that was just recorded again. 
setopt HIST_IGNORE_ALL_DUPS  # Delete old recorded entry if new entry is a duplicate. 
setopt HIST_FIND_NO_DUPS   # Do not display a line previously found. 
setopt HIST_IGNORE_SPACE   # Don't record an entry starting with a space. 
setopt HIST_SAVE_NO_DUPS   # Don't write duplicate entries in the history file. 
setopt HIST_REDUCE_BLANKS  # Remove superfluous blanks before recording entry. 
setopt HIST_VERIFY    # Don't execute immediately upon history expansion. 
setopt HIST_BEEP     # Beep when accessing nonexistent history. 

[1] https://unix.stackexchange.com/a/273863

그러나 savehist 변수의 숫자는 무시의 수. 아무리 내 껍질에 echo $SAVEHIST를 입력 할 때 나는 그것을 설정하는 방법 고, 나는 10,000 얻을 및 30K 이상의 항목 내 .zsh_history 파일은 내가 실종 무엇 10,000

에 덮인됩니다?

답변

0

이 섹션을 .zshrc에서 ~/opts/args.sh으로 옮기고 .zshrc에서 source ~/opts/args.sh이라는 줄을 추가했습니다. 그것을 해결했습니다

관련 문제