Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在检查.bashrcCygwin 安装的文件,发现有一个名为settitle:
.bashrc
settitle
settitle () { echo -ne "\e]2;$@\a\e]1;$@\a"; }
我想知道这个功能到底是什么。
它将终端仿真器窗口的标题设置为其参数。
它通过输出一个称为转义序列的特殊字符串来更改窗口的标题。在 Wikipedia、Bash Prompt HOWTO和ANSI 转义序列参考上阅读(大量)关于 ANSI 转义序列的更多信息。