linux系统不能使用方向键执行查看历史命令

xiaoxiao2021-02-28  66

 

set -o | grep history

If you get "history off" then add this line at the end of your ~/.bashrc:  

set -o history

Next try:  

echo $HISTFILE echo $HISTSIZE echo $HISTFILESIZE

If the first one is blank or /dev/null, add this line to the end of your ~/.bashrc:  

HISTFILE=$HOME/.bash_history

If either of the last two print 0, set them to some number like the default of 500:  

HISTFILESIZE=500 HISTSIZE=500

shareimprove this answer

转载请注明原文地址: https://www.6miu.com/read-41516.html

最新回复(0)