我有一个文件 postmaster.log,我需要在其中找到模式并更改其值 我需要找到的模式是
MaxValue=3 #this could be any value not just 3
我需要将其值更改为
MaxValue=0
问题是也有类似的模式
"MaxValueSet=3" and "MaxValue is currently low"
这也被替换了。我只需将 MaxValue=3 更改为 MaxValue=0 我尝试使用 sed
sed -i 's/MaxValue=3/MaxValue=0/g' /home/postmaster.log
但这仅在 MaxValue=3 对任何其他值不起作用时才有效。