Linux - shell 提示符中的用户显示名称别名

Linux - shell 提示符中的用户显示名称别名

是否可以在 shell 提示符中为用户显示名称添加别名?

例如:当我使用 ssh 时[email protected],它显示为John123

[John123@myhost ~]#

我可以将其更改为别名csgeek而不必重命名用户名吗?

[csgeek@myhost ~]#

答案1

export PS1="$(echo "$PS1"|sed -e 's/\\u/csgeek/g')"

相关内容