Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 git 使用终端(Mac)。
当我使用它时,它会在 $ 符号之前显示mySystemName-MacBook-Pro:CurrentWorkingDir mySystemName 。就我而言,整个内容太长,几乎没有多少空间来编写命令。 我想重命名它并使用别名,以便 git 命令可能有更多空间。
总之我想从这个:
mySystemName-MacBook-Pro:CurrentWorkingDir mySystemName $
对此:
别名 $
PS1="aliasName \$ "
man bash ...
man bash
PS1 该参数的值被扩展(参见下面的 PROMPTING)并用作主要提示字符串。默认值为 ''\s-\v\$''。
...
PROMPTING
\w 当前工作目录,$HOME 缩写为波浪号
\w
\\ 反斜杠
\\
…………