LoginSignup
2
3

More than 5 years have passed since last update.

historyコマンドの設定

Last updated at Posted at 2016-05-04

これで時間が表示されるようになります

vi ~/.bashrc
.bashrc
HISTTIMEFORMAT='%y/%m/%d %H:%M:%S '

履歴のサイズを変更します

echo $HISTSIZE
HISTSIZE=10000

これで10,000に変更されました

echo $HISTSIZE

これでls、historyのコマンドはhistoryから除外されます

HISTIGNORE=ls:history       
2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3