현재 줄을 덮어쓰라는 Bash 프롬프트

현재 줄을 덮어쓰라는 Bash 프롬프트

여기 이 스레드와 비슷한 문제가 있었습니다. 명령줄이 해당 줄을 덮고 있었고 위쪽 화살표가 모든 텍스트를 덮고 있었습니다.

터미널 프롬프트가 올바르게 래핑되지 않습니다.

내가 달릴 때

$ shopt  | grep checkwinsize
checkwinsize    on

내 bashrc의 ps1 부분 중 올바른 부분을 래핑하지 않아서 문제가 발생한 것 같습니다. [] 안의 스크립트. 다른 스레드의 설명을 따라해 보았지만 도움이 되지 않는 것 같습니다.

이것은 내 bashrc의 일부입니다. 스크립트.

force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
    # We have color support; assume it's compliant with Ecma-48
    # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
    # a case would tend to support setf rather than setaf.)
    color_prompt=yes
    else
    color_prompt=
    fi
fi

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

내 bashrc에 문제가 있나요? 이 문제를 일으키는 스크립트는 무엇입니까?

저는 4.13.0-36 일반 커널과 함께 Ubuntu 16.04.4 Cinnamon 버전 3.6.7을 실행하고 있습니다.

감사해요.

답변1

뭔가 빠졌을 수도 있지만 이것을 재현할 수 없거나 스크립트에 어떤 문제도 볼 수 없습니다.

먼저 문제가 실제로 bashrc의 이 부분에 있는지 확인하고 싶습니다. "echo $PS1"을 실행하여 프롬프트가 다른 곳에서 수정되었는지 확인하세요. 확실히 하기 위해 다음을 실행하여 문제가 계속 발생하는지 확인하세요.

bash -noprofile -norc
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"

문제가 지속되면 원인은 터미널 에뮬레이터일 수 있습니다. 사용 중인 터미널 에뮬레이터에 대해 "$TERM" 값이 올바른지 확인한 후 다른 에뮬레이터를 사용해 보십시오. 터미널을 다시 초기화하고 PS1을 수동으로 설정할 수도 있습니다. xterm을 사용한다고 가정합니다.

TERM=xterm
tset $TERM
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"

관련 정보