如何从终端示例中删除 PC 名称
rahul@rahul-ThinkPad-L480:~$
to
rahul:~$
答案1
vi .bashrc
:
原来的:
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
将其改为...
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u:\w\$ '
fi
(基本上删除两次“@\h”。
使用以下方法备份 .bashrc:
cp .bashrc .bashrc.old
编辑之前。