Answers:
是。这是使用PS1的bash的示例,应该与发行版无关:
具体来说,转义序列\[\e]0; __SOME_STUFF_HERE__ \a\]
是令人关注的。我已经对其进行了编辑,以使其更加清晰。
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
TITLEBAR='\[\e]0;\u@\h\a\]'
# Same thing.. but with octal ASCII escape chars
#TITLEBAR='\[\033]2;\u@\h\007\]'
if [ "$color_prompt" = yes ]; then
PS1="${TITLEBAR}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ "
else
PS1="${TITLEBAR}\u@\h:\W\$ "
fi
unset color_prompt force_color_prompt
还要注意,根据所使用的终端程序和外壳程序,可以使用多种方式设置xterm的标题。例如,如果您使用的是KDE的Konsole,则可以通过转到Settings
-> Configure Profiles
-> Edit Profile
-> Tabs
并设置Tab title format
和Remote tab title format
设置来覆盖标题设置。
此外,您可能想签出:
\h
仅在$SSH_CLIENT
非空时才输入提示。
\[\e]2;\u@\h\a
。(也使用该信息编辑了我的回复)
这是我使用的SSH bash脚本的版本,该脚本可设置远程服务器的标题和命令提示符,而无需对远程服务器进行任何更改。
my_ssh.sh:
#!/bin/bash
SETTP='MY_PROMPT="$HOSTNAME:$PWD\$ "'
SETTP="$SETTP;"'MY_TITLE="\[\e]0;$HOSTNAME:$PWD\a\]"'
SETTP="$SETTP;"'PS1="$MY_TITLE$MY_PROMPT"'
ssh -t $1@$2 "export PROMPT_COMMAND='eval '\\''$SETTP'\\'; bash --login"
您可以通过调用./my_ssh.sh用户名主机名来调用它
以下对我有用(可能仅在gnome-terminal上):
comp@home$ cat /usr/bin/ssh
#!/bin/bash
echo -ne "\033]0;${1}\007"
ssh_bkup "$@"
其中ssh_bkup命令只是具有更改名称的基本“ ssh”,在echo命令更改当前终端的标题后立即调用该名称。
~/bin
在我的路径中具有优先权,因此我将您的脚本放在~/bin/ssh
。最后一行明确调用/usr/bin/ssh
。这样,其他用户ssh
在该计算机上登录时仍会使用该标准,并且(由于我们的主目录位于服务器上,LDAP帐户)我可以在我登录的任何计算机上使用该功能。