Linux修改命令提示符

2022/4/12 7:13:14

本文主要是介绍Linux修改命令提示符,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

修改命令提示符脚本:

 1 [12:36:38 root@bj-aly-wordpress-251-93 shell_script]#cat set_env.sh 
 2 #!/bin/bash
 3 #
 4 #*************************************************************************************
 5 #Author:                                                      wanghaomiao
 6 #QQ:                                                          1074035975
 7 #Date:                                                        2022-03-31
 8 #FileName                                                     set_env.sh
 9 #URL:                                                         wanghaomiao.com.cn
10 #Description:                                                 The test script
11 #Copyreght (C):                                               2022 All rightsreserved
12 #*************************************************************************************
13 COLOR='\e[1;32m'
14 COLOR_END='\e[0m'
15 ENV_DIRECTORY=/etc/profile.d/env.sh
16 
17 set_env() {
18 echo 'PS1="[\[\e[1;31m\]\t\[\e[0m\] \u@\h \W]\\$"' > $ENV_DIRECTORY
19 chmod +x $ENV_DIRECTORY
20 echo -e "$COLOR 命令提示符设置完成!$COLOR_END"
21 }
22 source $ENV_DIRECTORY
23 set_env

注:需使用source或' . '执行。



这篇关于Linux修改命令提示符的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程