เนื่องจากทุกคนรู้วิธีแก้ปัญหาของ David Pashley แล้วฉันรู้สึกประหลาดใจมากฉันใช้เวลานานมากในการหาสิ่งนี้เพราะมันเกือบจะแก่แล้ว
วิธีการแก้ปัญหานี้จะจัดการกับขยะขยะเสร็จสิ้นการทุบตี
เพื่อความชัดเจน: ฉันไม่ได้ทำอะไรด้วยตัวเองที่นี่ แต่เป็นการค้นคว้า เครดิตทั้งหมดไปที่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
นี่เป็นcross-postเพราะฉันเพิ่งค้นพบเกี่ยวกับมันและต้องการแบ่งปันและฉันคิดว่ามันมีประโยชน์ที่นี่เช่นกัน