如何在 Linux Shell 中隐藏用户名@node?

如何在 Linux Shell 中隐藏用户名@node?

我想隐藏username@solaris在 Unix shell 中。

我想要这样的东西:

$ ls -l

相反,我有这个:

user@solaris:~$ ls -l

答案1

如果通过“某事喜欢“你的意思是:普通用户使用‘$’,root 用户使用‘#’,那么

PS1=\$

在你的.profile

否则使用

PS1=$

答案2

/etc/bashrc或将环境变量~/.bashrc更改为 。或者,如果不存在,则添加新行:PS1PS1=$PS1

PS1=$ 

然后运行这个:

source /etc/bashrc

或者:

source ~/bashrc

相关内容