Chinaunix首页 | 论坛 | 博客
  • 博客访问: 482591
  • 博文数量: 67
  • 博客积分: 2952
  • 博客等级: 少校
  • 技术积分: 679
  • 用 户 组: 普通用户
  • 注册时间: 2006-01-24 10:50
文章分类

全部博文(67)

文章存档

2011年(9)

2010年(36)

2009年(8)

2008年(5)

2007年(5)

2006年(4)

我的朋友

分类: LINUX

2007-07-09 09:50:13

the version of bash is less than 3.0
export PROMPT_COMMAND='{
date "+: %c; `history 1 | { read x cmd; echo "$cmd"; }`";
} >> $HOME/.history-timestamp'
 
我的更改(加入.bash_profile):
echo "" >>$HOME/.history-timestamp
date "+: %c; $USER ;login!" >>$HOME/.history-timestamp
export PROMPT_COMMAND='{
date "+: %c; $USER ; $? ; `pwd` ; `history 1 | { read x cmd; echo "$cmd"; }`";
} >> $HOME/.history-timestamp'

bash 3.0
set the variable HISTTIMEFORMAT
bb. New HISTTIMEFORMAT variable; value is a format string to pass to
    strftime(3).  If set and not null, the `history' builtin prints out
    timestamp information according to the specified format when displaying
    history entries.  If set, bash tells the history library to write out
    timestamp information when the history file is written.
export HISTTIMEFORMAT="%F %H:%M "
阅读(1313) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~