为了在满屏的命令中找到用户的命令行,所以很有必要设置一种字体颜色。我就设置最实用的一种,可以用蓝色字体显示当前所在路径
echo "PS1='[\${debian_chroot:+(\$debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\]]\$ '" >> ~/.bashrc
source ~/.bashrc
vim ~/.profile
if [ -s ~/.bashrc ];
then source ~/.bashrc;
fi