Stick의 터미널 프롬프트에서 Sugar의 반환 코드를 어떻게 제거합니까?

Stick의 터미널 프롬프트에서 Sugar의 반환 코드를 어떻게 제거합니까?

나는 사용하고있다막대기에 사탕(Fedora 23) i686용 0.106 릴리스.

터미널을 사용할 때 매우 이상한 동작이 발생합니다.

이상한 코드

예를 들어 를 입력하면 환경 변수의 값이 어디에 있는지 ls알 수 있습니다 .]777;notify;Command completed;ls[sugar] # [sugar] #PS1

.bashrc모습은 다음과 같습니다.

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
    . /etc/bashrc
fi

# Prompt
PS1="[sugar] # "

# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions

그 부분을 댓글로 달았더니 Source global definitions문제가 사라졌습니다. 그런데 수정하고 싶을 때 /etc/bashrc이 파일을 수정하는 것은 현명하지 않다는 글을 읽었습니다. 파일은 다음과 같습니다.

# /etc/bashrc

# System wide functions and aliases
# Environment stuff goes in /etc/profile

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.

# are we an interactive shell?
if [ "$PS1" ]; then
  if [ -z "$PROMPT_COMMAND" ]; then
    case $TERM in
    xterm*|vte*)
      if [ -e /etc/sysconfig/bash-prompt-xterm ]; then
          PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm
      elif [ "${VTE_VERSION:-0}" -ge 3405 ]; then
          PROMPT_COMMAND="__vte_prompt_command"
      else
          PROMPT_COMMAND='printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
      fi
      ;;
    screen*)
      if [ -e /etc/sysconfig/bash-prompt-screen ]; then
          PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen
      else
          PROMPT_COMMAND='printf "\033k%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
      fi
      ;;
    *)
      [ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default
      ;;
    esac
  fi
  # Turn on parallel history
  shopt -s histappend
  history -a
  # Turn on checkwinsize
  shopt -s checkwinsize
  [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "
  # You might want to have e.g. tty in prompt (e.g. more virtual machines)
  # and console windows
  # If you want to do so, just add e.g.
  # if [ "$PS1" ]; then
  #   PS1="[\u@\h:\l \W]\\$ "
  # fi
  # to your custom modification shell script in /etc/profile.d/ directory
fi

if ! shopt -q login_shell ; then # We're not a login shell
    # Need to redefine pathmunge, it get's undefined at the end of /etc/profile
    pathmunge () {
        case ":${PATH}:" in
            *:"$1":*)
                ;;
            *)
                if [ "$2" = "after" ] ; then
                    PATH=$PATH:$1
                else
                    PATH=$1:$PATH
                fi
        esac
    }

    # By default, we want umask to get set. This sets it for non-login shell.
    # Current threshold for system reserved uid/gids is 200
    # You could check uidgid reservation validity in
    # /usr/share/doc/setup-*/uidgid file
    if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
       umask 002
    else
       umask 022
    fi

    SHELL=/bin/bash
    # Only display echos from profile.d scripts if we are no login shell
    # and interactive - otherwise just process them to set envvars
    for i in /etc/profile.d/*.sh; do
        if [ -r "$i" ]; then
            if [ "$PS1" ]; then
                . "$i"
            else
                . "$i" >/dev/null
            fi
        fi
    done

    unset i
    unset -f pathmunge
fi
# vim:ts=4:sw=4

어떡해?

답변1

PS1환경 변수 외에도 PROMPT_COMMAND환경 변수도 프롬프트에 영향을 줍니다. Bash 매뉴얼 페이지에서:

설정된 경우 이 값은 각 기본 프롬프트가 실행되기 전에 명령으로 실행됩니다.

프롬프트에 원치 않는 내용을 추가하는 것이 바로 이 명령입니다. .bashrc에서 변수 설정을 해제하여 이 동작을 중지할 수 있습니다.

unset PROMPT_COMMAND

답변2

그림과 같이 주석 문자열

sudo vim /etc/profile.d/vte.sh
...
_vte_prompt_command() {
...
#printf "\033]777;notify;명령 완료;%s\007\033]0;%s@%s:%s\007%s" "${명령}" "${USER}" "${ 호스트 이름%%.*}" "${pwd}" "$(__vte_osc7)"
}

답변3

이는 사용자 터미널에서 su를 실행할 때 Fed 28에서도 발생합니다. "su -"를 실행하면 이 문제가 발생하지 않습니다.

테스트 환경에 대한 /etc/bashrc 및 /etc/profile.d/vte.sh에 동일한 코드 조각이 있습니다. PROMPT_COMMAND를 설정합니다. 코드를 보면 전자가 실행되고 있음을 알 수 있습니다.

답변4

EL7에서는 mate-terminal 및 vte* 패키지 업데이트가 작동하는 것으로 나타났습니다.

메이트는 동일한 프로세스를 유지하고 새 창을 시작하므로 모든 메이트 터미널을 닫았다가 다시 열어야 합니다. 따라서 새 라이브러리를 시작하려면 다시 시작해야 합니다.

관련 정보