如何在 linux 中的特定空行后插入新行?

How to insert new lines after a specific empty line in linux?

我正在尝试找到一种在特定空行之后插入新行的方法。
例如,我有一个包含防火墙规则的文件,我想在“# ok icmp code for FORWARD”和第一个空行之后插入新行。 (我不知道确切的行号,并且在多台机器上是不同的):

...

# ok icmp code for FORWARD
-A ufw-before-forward -p icmp --icmp-type destination-unreachable -j ACCEPT
-A ufw-before-forward -p icmp --icmp-type time-exceeded -j ACCEPT
-A ufw-before-forward -p icmp --icmp-type parameter-problem -j ACCEPT
-A ufw-before-forward -p icmp --icmp-type echo-request -j ACCEPT

[Insert new lines here]
# new lines comment
new line 1
new line 2

...

这是我不完整的解决方案:
查找具体行号:

cat file.rules | grep -n "ok icmp code for FORWARD" | cut -d':' -f 1


显示特定行之后和空行之前的行:

awk '!NF{f=0} /ok icmp code for FORWARD/ {f=1} f' file.rules

使用ed编辑文件:

ed -s file.rules <<'EOF'
/^# ok icmp code for FORWARD/;/^$/a
# new lines comment
new line 1
new line 2
.
w
EOF

首先将当前行设置为与 # ok icmp code for FORWARD 匹配的行,然后将当前行前进到该行之后的第一个空白行,然后 a在它后面追加文本 (带有单个句点的行标记输入结束),然后 w 将更改的文件写回磁盘。