当我在Mac终端上进行一些操作时,用户的输入和shell的输出具有相同的颜色当我有很多操作时,我想回顾历史,这很困难,因为用户的输入和shell的输出的所有行都混在一起。我想为用户的输入文本指定不同的颜色。如何在macOS终端中执行此操作?
myzjeezk1#
在~/.bash_profile中添加这一行:export PS1='\[\e[1;31m\]\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\]\$ '它将设置提示符的颜色。你可以阅读更多关于这个here。您还可以在Terminal -> Preferences... -> Profiles -> Text中更改某些颜色。
~/.bash_profile
export PS1='\[\e[1;31m\]\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\]\$ '
Terminal -> Preferences... -> Profiles -> Text
1条答案
按热度按时间myzjeezk1#
在
~/.bash_profile
中添加这一行:export PS1='\[\e[1;31m\]\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\]\$ '
它将设置提示符的颜色。你可以阅读更多关于这个here。
您还可以在
Terminal -> Preferences... -> Profiles -> Text
中更改某些颜色。