Linux
Linux - shell 提示符中的使用者顯示名稱別名
是否可以在 shell 提示符中為使用者顯示名稱設置別名?
例如:當我使用 ssh 時
john123@192.168.1.2
,它顯示為John123
[John123@myhost ~]#
我可以將其更改為別名
csgeek
而無需重命名使用者名嗎?
[csgeek@myhost ~]#
export PS1="$(echo "$PS1"|sed -e 's/\\u/csgeek/g')"