当我使用 Mac 时,终端会在路径上显示颜色,有没有办法删除它们?这就是我所拥有的:
答案1
进入终端Preferences
窗格并导航到;
Settings
>Advanced
单击Display Terminal as:
(或类似内容,那里没有英语语言)并选择非彩色显示方法;
答案2
我通过将其添加到 bash_profile 文件中解决了这个问题:
打开bash_profile:
vi .bash_profile
将其附加到文件末尾:
export PS1="\e[0;34m[\u@\h \w]\$ \e[m "
保存并关闭文件。
最终结果:路径为蓝色0;34
,\u
为您提供用户名\h
、简化的主机名并\w
为您提供完整的工作目录。
完整可用选项:
\u = your username
\H = full hostname, e.g. bob.example.com
\h = reduced hostname, e.g. bob
\w = full working directory, e.g. /home/jamie/bin
\W = basename of the working directory, e.g. bin
\t = time in 24-hour format
\# = command number
\$ = root identifier; $ for regular users, # for root
\T = time in 12-hour format
\l = terminal device, e.g. tty4
\j = number of background/suspended processes