使用 sed 命令将输入文本文件中所有出现的字符 'and'、'<'、'>' 替换为其 HTML 实体
Using sed command replace in the input text file all occurrences of characters '&', '<', '>' with their HTML entities
这是我的输入文本文件
< > & * ^ % $ # @ ! ) ( ) < > < > > > <
这是我正在使用的 sed shell 脚本。
sed 's/&/&/g ; s/</</g ; s/>/>/g' html_file.txt > new_file.txt
这是输出文件:
<lt; >gt; & * ^ % $ # @ ! ) ( ) <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.
使用 \
将 &
转义为 \&
。
这是我的输入文本文件
< > & * ^ % $ # @ ! ) ( ) < > < > > > <
这是我正在使用的 sed shell 脚本。
sed 's/&/&/g ; s/</</g ; s/>/>/g' html_file.txt > new_file.txt
这是输出文件:
<lt; >gt; & * ^ % $ # @ ! ) ( ) <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.
使用 \
将 &
转义为 \&
。