在~/.bashrc中添加下面代码 function set-title() { if [[ -z "$ORIG" ]]; then ORIG=$PS1 fi TITLE="\[\e]2;$*\a\]" PS1=${ORIG}${TITLE} } set-title China 即可将title设置为China
发布评论