gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 18:42:27 25 4
gpt4 key购买 nike

我正在尝试找到一种在特定空行之后插入新行的方法。
例如,我有一个包含防火墙规则的文件,我想在“# 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 的行,然后将当前行前进到其后的第一个空白行,然后 一个 在其后附加文本(带有单个句点的行标记输入结束),然后 w 将更改的文件写入磁盘。

关于linux - 如何在linux中的特定空行之后插入新行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71954208/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com