linux 设置修改命令行提示符

linux下命令行提示符修改为修改PS1环境变量,如:

west@<16:17:45>:~/proj$ 
west@<16:17:45>:~/proj$ 
west@<16:17:45>:~/proj$ 

修改需要修改 ".bashrc"文件,找到PS1变量

其中:

'${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@<\t>\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '

关键字 介绍:

1、\u 当前登录用户名,示例中west

2、\h 当前计算机名称,示例中没设置该选项

3、\w 当前目录的完整路径

4、\t 当前时间,24小时制

5、\T 当前时间,12小时制

...还有很多请网上百度

其中:

\[\033[01;34m\]

类似的字符是设置字体颜色,具体含义介绍请参考:

https://blog.csdn.net/mr_wangning/article/details/77685371

 

 

 

 

你可能感兴趣的:(linux)