使用 sed 命令将输入​​文本文件中所有出现的字符 'and'、'<'、'>' 替换为其 HTML 实体

Using sed command replace in the input text file all occurrences of characters '&', '<', '>' with their HTML entities

这是我的输入文本文件

< > & * ^ % $ # @ ! ) ( ) < > < > > > < 

这是我正在使用的 sed shell 脚本。

sed 's/&/&amp;/g ; s/</&lt;/g ; s/>/&gt;/g' html_file.txt > new_file.txt

这是输出文件:

<lt; >gt; &amp; * ^ % $ # @ ! ) ( ) <lt; >gt; <lt; >gt; >gt; >gt; <lt; 

我不明白为什么还有<>的标志而不是&

来自info sed

3.3 The 's' Command
[...]
The 's' command (as in substitute) is probably the most important in
'sed' [...]. The syntax of the 's' command is 's/REGEXP/REPLACEMENT/FLAGS'.
[...]
The REPLACEMENT can contain [...] unescaped '&' characters which reference the
whole matched portion of the pattern space.

使用 \& 转义为 \&