iTerm2:区分用户输入和计算机输出,以提高可读性

时间:2015-11-14 22:39:11

标签: terminal iterm

使用iTerm时,理解以前命令中发生的事情会让人感到困惑,因为用户输入的格式与信息输出的格式相同。

是否有可能做以下事情?

今天就是这样:

enter image description here

这是一个简单的解决方案,可以让我的生活更轻松:

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以在PS1文件中自定义~/.bash_profile变量。例如,这是我的:

export PS1='\[\e[32;1m\]\h:\[\e[31m\]\W \[\e[32;1m\]\u\[\e[0m\]\$ '

令牌是:

\e[32;1m\]  - the color green
\h          - host name (i.e. the computer's name)
:           - the literal colon (:) character
\e[31m\]    - the color red
\W          - current working directory
\u          - user name
\e[0m\]     - the color black
\$          - normally display the dollar sign, change to # when logged in as root

Reference。 Google for" ps1提示生成器"用于帮助您配置它的工具。这就是我的提示:

enter image description here