我运行Ubuntu 12.04,由于某种原因,bash无法保留我的命令历史记录。该~/.bash_history
文件仅包含我几个月前键入的3条命令。
我怎样才能解决这个问题?
编辑:
这是我的相关内容.bashrc
:
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
@jokerdino thx,我编辑了问题。这是标准设置(我没有触摸它们)。
—
yohbs 2012年
“ echo $ SHELL”的输出是什么?
—
亚伦
@ BryceAtNetwork23
—
yohbs 2012年
/bin/bash
另一尝试是检查
—
reverendj1 2012年
~/.bash_history
.bashrc
。