如何在 PS1 提示字符串中使用 sed 替换终端标题

如何在 PS1 提示字符串中使用 sed 替换终端标题

我已经花了 1 小时了,但还是搞不清楚。这是我的PS1提示字符串:

$ echo $PS1
\$SHLVL:2 \e[7m$(gs_git_show_branch)\e[m\n\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\e]2;this is the title\a\]

终端窗口标题是this is the title部分。\[\e]2;标记标题的开始,\a\]标记标题的结束。请参阅“自定义终端窗口标题”在这里

根据https://regex101.com/,正则表达式字符串\\\[\\e\]2;.*\\a\\\]似乎与标题及其转义字符匹配。请在此处查看其演示:https://regex101.com/r/okcx0T/1

因此,此sed命令应该从字符串中删除标题PS1并打印出输出,但它似乎根本不匹配标题字符串!从中可以看出echo $PS1,没有任何区别:

$ echo $PS1 | sed -E "s|\\\[\\e\]2;.*\\a\\\]||"
\$SHLVL:2 \e[7m$(gs_git_show_branch)\e[m\n\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\e]2;this is the title\a\]

$ echo $PS1
\$SHLVL:2 \e[7m$(gs_git_show_branch)\e[m\n\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\e]2;this is the title\a\]

我怎样才能替换PS1变量中的这个标题字符串,有或没有sed

我的sed命令显然适用于简单匹配。Watch this!this is the title显然已从提示字符串末尾删除PS1

$ echo $PS1 | sed 's|this is the title||'
\$SHLVL:2 \e[7m$(gs_git_show_branch)\e[m\n\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\e]2;\a\]

我似乎无法匹配标题字符串的开始和结束转义字符!

我在尝试解决这个问题时搜索过的参考资料

  1. https://wiki.archlinux.org/index.php/Bash/Prompt_customization#Customizing_the_terminal_window_title
  2. https://linuxize.com/post/how-to-check-if-string-contains-substring-in-bash/
  3. https://stackoverflow.com/questions/229551/how-to-check-if-a-string-contains-a-substring-in-bash
  4. https://superuser.com/questions/1107680/how-to-use-sed-with-piping
  5. https://stackoverflow.com/questions/8356958/sed-just-trying-to-remove-a-substring
  6. https://unix.stackexchange.com/questions/169207/remove-backslashes-from-a-text-file/169210#169210'- 对在 bash、 vs"等中的转义有一些重要的评论。
  7. https://unix.stackexchange.com/questions/19491/how-to-specify-characters-using-hexadecimal-codes-in-grep
  8. https://en.wikipedia.org/wiki/ASCII

答案1

您的问题是双引号允许 shell 替换\\-\如果您使用 shell 的-x选项运行该命令,您就会看到这一点:

$ set -x

$ echo foo | sed -E "s|\\\[\\e\]2;.*\\a\\\]||"
+ echo foo
+ sed -E 's|\\[\e\]2;.*\a\\]||'
foo

如果您将 sed 表达式改为单引号,它应该可以工作。该-E标志不是必需的,例如

$ printf '%s\n'  "$ps1"
\$SHLVL:2 \e[7m$(gs_git_show_branch)\e[m\n\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\e]2;this is the title\a\]

然后

$ set -x

$ printf '%s\n' "$ps1" | sed 's|\\\[\\e\]2;.*\\a\\\]||'
+ sed 's|\\\[\\e\]2;.*\\a\\\]||'
+ printf '%s\n' '\$SHLVL:2 \e[7m$(gs_git_show_branch)\e[m\n\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\e]2;this is the title\a\]'
\$SHLVL:2 \e[7m$(gs_git_show_branch)\e[m\n\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$

相关内容