Ubuntu 16.04 terminal 无法设置title的处理方法

前端之家收集整理的这篇文章主要介绍了Ubuntu 16.04 terminal 无法设置title的处理方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一步:在~/.bashrc中添加如下代码

function set-title() {
  if [[ -z "$ORIG" ]]; then
    ORIG=$PS1
  fi
  TITLE="\[\e]2;$*\a\]"
  PS1=${ORIG}${TITLE}
}

第二步:以后想要设置title的时候可以采用如下方法

set-title my new tab title

这样标题就会变为”set-title my new tab title”

Enjoy it!

原文链接:https://www.f2er.com/ubuntu/349527.html

猜你在找的Ubuntu相关文章