我已经玩了> 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
命令显然适用于简单的匹配。看这个!从提示字符串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\]
我似乎无法匹配标题字符串的开头和结尾转义字符就是全部!
我在尝试解决这个问题时搜索过的参考资料
- https://wiki.archlinux.org/index.php/Bash/Prompt_customization#Customizing_the_terminal_window_title
- https://linuxize.com/post/how-to-check-if-string-contains-substring-in-bash/
- https://stackoverflow.com/questions/229551/how-to-check-if-a-string-contains-a-substring-in-bash
- https://superuser.com/questions/1107680/how-to-use-sed-with-piping
- https://stackoverflow.com/questions/8356958/sed-just-trying-to-remove-a-substring
- https://unix.stackexchange.com/questions/169207/remove-backslashes-from-a-text-file/169210#169210
'
- 有一些关于在 bash、 vs"
等中转义的重要评论。 - https://unix.stackexchange.com/questions/19491/how-to-specify-characters-using-hexadecimal-codes-in-grep
- https://en.wikipedia.org/wiki/ASCII
您的问题是双引号允许外壳替换
\\
为\
- 如果您使用外壳-x
选项运行命令,您可以看到这一点:如果您更改为 sed 表达式周围的单引号,它应该可以工作。该
-E
标志不是必需的。给定然后