修改linux终端命令行颜色

1.PS1

要修改 linux 终端命令行颜色,我们需要用到PS1,PS1是 Linux 终端用户的一个环境变量,用来说明命令行提示符的设置。

[root@VM-8-4-centos ~]# vim /etc/bashrc
#在最后加上
PS1='\[\033[01;37m\][\[\033[01;32m\]\u\[\033[01;33m\]@\[\033[01;31m\]\h\[\033[01;36m\] \w\[\033[01;37m\]]\[\033[01;35m\]\$ \[\033[0m\]'
[root@VM-8-4-centos ~]# . /etc/bashrc

2.效果图如下

修改linux终端命令行颜色_第1张图片

你可能感兴趣的:(系统运维,linux,运维,服务器)