如何根据服务器获得不同颜色的提示?

如何根据服务器获得不同颜色的提示?

ssh一直在使用,但有时我会忘记我在哪个服务器上。

我可以使用相同的.bashrc(/home 是 NFS 共享的)在不同的服务器上有不同的颜色提示吗?最好不列出服务器。

答案1

像这样的东西:

set_color_prompt() {
    _colorcombos() {
    PERL_HASH_SEED=109 perl -MB -e '
        use B;
        # color combinations that are readable (e.g. no red on red)
        @c =(map { "$_\n0\n" }
             6..7,9..11,13..15,40..51,75..87,113..123,147..159,171..231,249..254),
            (map { "$_\n231\n" }
             1..9,12..13,16..45,52..81,88..116,124..151,153,160..180,
             182..185,187..189,196..214,232..252,255..254);
        for(@ARGV) {
            print @c[hex(B::hash($_)) % $#c];
        }
        ' "$@"
    }
    local col=($(_colorcombos `whoami` `hostname` "`id`"))
    # (bg1,fg1)=user, (bg2,fg2)=host, (bg3,fg3)=path
    PS1='${debian_chroot:+($debian_chroot)}\[\033[48;5;'${col[0]}';38;5;'${col[1]}'m\]\u\[\033[00m\]\[\033[48;5;'${col[2]}';38;5;'${col[3]}'m\]@\h\[\033[00m\]:\[\033[48;5;'${col[4]}';38;5;'${col[5]}'m\]\w\[\033[00m\]\$ '
}

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color)
    set_color_prompt
    ;;
xterm-256color)
    set_color_prompt
    ;;
*)
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
    ;;
esac

它会根据whoamihostname和设定彩色提示id,因此如果您以不同的用户身份登录,颜色也会有所不同。

whoamihostnameid被散列,并根据散列值选择颜色组合。这些组合经过测试以确保它们可读。

更改PERL_HASH_SEED=109以获得不同的颜色(例如,如果两个重要的服务器碰巧给出相同的值)。

相关内容