我目前的PS1:
PS1='\[\033]0;$TITLEPREFIX:${PWD//[^[:ascii:]]/?}\007\]\n\[\033[32m\]\u@\h \[\033[35m\]`date +%Y-%m-%d,%H:%M:%S` \[\033[33m\]\w\[\033[36m\]`__git_ps1`\[\033[0m\]\n$: '
是的,这是一团糟,但它很适合我 - 我的提示看起来像这样:
P2759474@RVPTINTCL415MQC 2017-10-06,11:20:18 ~/repos/jdk (master)
它们甚至是彩色编码的,用户@ machine为绿色,时间戳为紫色,当前位置为黄色,任何git分支为蓝色。我只是有点恼火,我 使用反引号代替$()
构造。
任何人都知道为什么?愿意帮助我理解吗?使用subshell命令解析复杂的提示值时只会出现问题,而这只是一个问题因为我想理解为什么它在那里很重要...一般的改进建议总是受到欢迎,而我们就在这里。
更新 -
目前,当我尝试使用$()时,我得到了很多
bash: command substitution: line 1: syntax error near unexpected token ')'
bash: command substitution: line 1: 'date +%Y-%m-%d,%H:%M:%S)'
bash: command substitution: line 1: syntax error near unexpected token ')'
bash: command substitution: line 1: '__git_ps1)'
我的环境
BASH_VERSINFO=([0]="4" [1]="3" [2]="42" [3]="5" [4]="release" [5]="x86_64-pc-msys")
BASH_VERSION='4.3.42(5)-release'
[ -z "$BASH_VERSION" ] || shopt -q promptvars || ps1_expanded=no;
告诉我一些事情,也许......谢谢!
答案 0 :(得分:5)
当您开始尝试在提示中嵌入命令时,是时候开始使用PROMPT_COMMAND
。
# You won't even have to put the title-bar stuff in your prompt
# and there are already shortcuts for date and time
set_titlebar () {
printf '\033]0;%s:%s\007' "$TITLEPREFIX" "${PWD//[^[:ascii:]]/?}"
}
set_prompt () {
PS1='\[\033[32m\]\u@\h ' # user@host in green
PS1+='\[\033[35m\]\D{%Y-%m-%d},\t ' # Don't need date
PS1+='\[\033[33m\]\w\[\033[36m\]' # Directory in orange
PS1+=$(__git_ps1) # git info, if appropriate
PS1+='\[\033[0m\]\n$: '
}
PROMPT_COMMAND='set_titlebar;set_prompt'