首页
Linux教程
MongoDB教程
FTP教程
Apache教程
Nginx
jQuery
Redis
MySQL
PostgreSQL教程
PHP教程
Elasticsearch

Linux教程

目录
Linux 教程
Shell 教程
Linux 参考手册

linux命令行提示符显式完整路径


1.编辑profile文件,添加环境变量PS1。

[root@test /root]# vim /etc/profile

在文件profile里面添加如下内容。

[/etc/profile]
export PS1='[\u@\h `pwd`]\$'

2.然后执行source命令。

[root@test /root]# source /etc/profile