为什么我的函数不在PS1中执行?

时间:2015-07-03 03:49:30

标签: shell ps1

get_git_branch(){
        local branch__=

        git branch &> /dev/null

        if [ $? -eq 0 ]; then
                branch__=`git branch --no-color | sed -ne 's/^\* \(.*\)$/\1/1p' | tr a-z A-Z`
        else
                branch__="NORMAL"
        fi
        echo -n $branch__
}

exit_status(){
        local smile__=
        if [ $? -eq 0 ]; then
                smile__='(*´▽`*)'
        else
                smile__='(╥﹏╥)'
        fi
        echo -n $smile__
}

export PS1='[\w]\d\t\$\n\u->(`get_git_branch`)`exit_status`:'

这是我的bashrc中的PS1设置,我想检查我的终端中的git分支和退出状态,每次PS1刷新时get_git_branch都有效,但是exit_status没有,whey exit_status没有执行?

1 个答案:

答案 0 :(得分:2)

绝对执行。但是,$?会被之前运行的其他代码更改,例如get_git_branch

这里的最佳做法是不要将代码嵌入到PS1中需要详细流控制的位置,而是使用PROMPT_COMMAND

get_git_branch(){
  local branch

  if branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null); then
    printf '%s\n' "${branch^^}" # if on bash 3.2, you may need to use tr instead
  else
    echo "NORMAL"
  fi
}

exit_status(){
  if (( ${1:-$?} == 0 )); then
    printf '%s' '(*´▽`*)'
  else
    printf '%s' '(╥﹏╥)'
  fi
}

build_prompt() {
  last_exit_status_=$?
  PS1='[\w]\d\t\$\n\u->($(get_git_branch))$(exit_status "$last_exit_status_"):'
}

PROMPT_COMMAND=build_prompt