如何从终端中的user @ user $中删除用户


3

如主题描述,我想删除终端和iterm中的user @ user。什么是解决这个问题的最佳方法。

root@root-me$ ~

我只是想

~

编辑:我发现,如果我将.zshrc更改DEFAULT_USER=myusername为我的用户名,我可以实现这一点,所以我想知道为什么它需要是确切的用户名

Answers:


2

庆典

在终端提示符下,键入:

nano .bashrc

然后寻找

export PS1=" "

在引号之间,您可以更改/添加以下行以自定义提示:

\d – Current date
\t – Current time
\h – Host name
\# – Command number
\u – User name
\W – Current working directory (ie: Desktop/)
\w – Current working directory, full path (ie: /Users/Admin/Desktop)

资源

zsh / tcsh

Zsh和tcsh都使用PROMPT。颜色代码是相同的,zsh具有略微不同的颜色代码转义序列。

tcsh的手册页zsh的页面对变量/序列的详细信息。

与其他shell不同,没有像PS1或PROMPT这样的提示变量。要显示提示,fish会执行带有名称的函数fish_prompt,并将其输出用作提示。多行都行。可以通过set_color设置颜色,将其命名为ANSI颜色或十六进制RGB值:

> function fish_prompt
        set_color purple
        date "+%m/%d/%y"
        set_color FF0
        echo (pwd) '>'
        set_color normal
  end
02/06/13
/home/tutorial > 

这不适用于zshell吗?
user2167582 2014年

编辑我的答案
1
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.