改变系统默认的命令行头部
原头部:
Last login: Thu Oct 18 10:37:24 2018 from 10.0.0.1
[root@e ~]#
修改:
[root@e ~]# vim /etc/profile
最后一行加入
PS1="[`whoami`@`hostname`:"' $PWD] 像我这样优秀的人啊~###'
生效:
[root@e ~]# vim /etc/profile
[root@e ~]# source /etc/profile
结果:
[root@e /root] 像我这样优秀的人啊~###ls
anaconda-ks.cfg a.sh
[root@e /root] 像我这样优秀的人啊~###
还原:
删除/etc/profile最后一行
[root@e ~]# source /etc/profile
重新登录即可