Linux set-prompt
1.确认shell变量
echo $SHELL
shell如果是tcsh或者csh可以按照下述方法来配置
2.变量
man tcsh
输入 /%/ 搜索需要的变量 ,example:%B[%W-%D-%P-%{\e[31m%}%j%{\e[37m%}-%{\e[32m%}%~]>>
颜色设置 %{\e[30m%} ## 0恢复默认 30black 31red 32green 33yellow 34blue 35purple 36cyan 37white foreground
在.tcshrc(或者.cshrc,没有的话创建一个)中输入:
set prompt = '%B[%W-%D-%P-%{\e[31m%}%j%{\e[37m%}-%{\e[32m%}%~]>>'
:wq保存后source .tcshrc:
[月-日-具体时间-job数量-当前路径]>> 加粗并上色