合 配置Linux终端title标题
若终端较多,避免混淆,那么可以配置title,如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | cat >> ~/.bashrc <<"EOF" function set-title() { if [[ -z "$ORIG" ]]; then ORIG=$PS1 fi TITLE="\[\e]2;$*\a\]" PS1=${ORIG}${TITLE} } EOF source ~/.bashrc set-title lhrxxt -- 或者 echo -e "\033]0;标题\007" echo -n $'\e'"]0;标题"$'\a' |