| # don't store duplicate entries in the historyexport HISTCONTROL=erasedups# use a simple prompt of host:pwd# (user is always root)PS1='\h:\w\$ '# set the terminal title to host:pwdcase $TERM inxterm*)	PROMPT_COMMAND='echo -ne "\033]0;${HOSTNAME}:${PWD}\007"'	;;esac
 |