我需要帮助来使用 sed 来注释匹配的行和它后面的 4 行。在一个文本文件中。
我的文本文件是这样的:
[myprocess-a]
property1=1
property2=2
property3=3
property4=4
[anotherprocess-b]
property1=gffgg
property3=gjdl
property2=red
property4=djfjf
[myprocess-b]
property1=1
property4=4
property2=2
property3=3
我想在所有具有文本“[myprocess”的行和预期输出后面的 4 行前加上 # 前缀:
#[myprocess-a]
#property1=1
#property2=2
#property3=3
#property4=4
[anotherprocess-b]
property1=gffgg
property3=gjdl
property2=red
property4=djfjf
#[myprocess-b]
#property1=1
#property4=4
#property2=2
#property3=3
非常感谢您对此的帮助。