回答:
はい。以下は、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 username hostnameを呼び出すことで呼び出すことができます
以下は私のために動作します(おそらく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アカウントにあるため)ログオンしているマシンで機能を取得します。