解决CentOS终端命令不同步问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决CentOS终端命令不同步问题相关的知识,希望对你有一定的参考价值。
history(){
syncHistory
builtin history "[email protected]"
}
syncHistory(){
builtin history -a
HISTFILESIZE=$HISTFILESIZE
builtin history -c
builtin history -r
}
promptCommand(){
if [ "$TERM" = xterm ]
then case "$DISPLAY" in
:*) printf " 33]0;%s 07" "$PWD" ;;
*) printf " 33]0;%s -- %s 07" "$HOST_UPPER" "$PWD" ;;
esac
fi
syncHistory
}
HOST_UPPER=`echo $HOSTNAME | tr ‘[a-z]‘ ‘[A-Z]‘`
PROMPT_COMMAND=promptCommand
贴在.bashrc即可
以上是关于解决CentOS终端命令不同步问题的主要内容,如果未能解决你的问题,请参考以下文章
CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段