さて、だれもがすでにDavid Pashleyの解決策を知っているように思えるので、私はこの解決策がほとんど同じであるので、この解決策を見つけるのにとても長い時間がかかったのにはちょっと驚いた。
このソリューションは、実際にはbash補完スパムのゴミを処理します。
明確にするために、私はここでは自分で何もしませんでした。すべてのクレジットはMarius Gedminasに送られます。
これは、Gnome-Terminal / Terminatorで完璧に機能します
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
# Show the currently running command in the terminal title:
# http://www.davidpashley.com/articles/xterm-titles-with-bash.html
show_command_in_title_bar()
{
case "$BASH_COMMAND" in
*\033]0*)
# The command is trying to set the title bar as well;
# this is most likely the execution of $PROMPT_COMMAND.
# In any case nested escapes confuse the terminal, so don't
# output them.
;;
*)
echo -ne "\033]0;${USER}@${HOSTNAME}: ${BASH_COMMAND}\007"
;;
esac
}
trap show_command_in_title_bar DEBUG
;;
*)
;;
esac
また、これについて知り、共有したかったので、これもクロスポストです。ここでも役に立ちます。