history
歴史
Linux
コマンド
code: (bash)
echo $HISTFILE
history -d 100 # 直近の100個を削除
# 全部削除
history -c
cat /dev/null > ~/.bash_history
code: .bashrc
HISTCONTROL=ignoreboth # 先頭文字がスペースのコマンドをhistoryに残さないオプション
Reference
history コマンドに日時を付与する - Qiita