Created
July 16, 2018 15:43
-
-
Save aileron/30d340f372e53fe1a28937de9fe17a47 to your computer and use it in GitHub Desktop.
history file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HISTFILE=$HOME/.history # 履歴をファイルに保存する | |
HISTSIZE=10000000 # メモリ内の履歴の数 | |
SAVEHIST=10000000 # 保存される履歴の数 | |
setopt hist_ignore_dups # 重複を記録しない | |
setopt hist_ignore_all_dups | |
setopt hist_save_no_dups | |
setopt hist_reduce_blanks # スペース排除 | |
setopt extended_history # 履歴ファイルに時刻を記録 | |
setopt share_history # 端末間の履歴を共有 | |
function history-all { history -E 1 } # 全履歴の一覧を出力する |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment