Sed命令不能在sun solaris机器上工作



我有一个xml文件,我在其中搜索以下模式。

<ServiceConfig Id="554">
<Comment>ECS_OCS_V1_0.0.0.7.32251@3gpp.org</Comment>
<MaxCost>0.000000</MaxCost>
<MaxCostLocalCurrency>true</MaxCostLocalCurrency>
<Atomic>false</Atomic>
<TariffSwitchHandling>external</TariffSwitchHandling>
<CdrAtTollFreeService>false</CdrAtTollFreeService>
<BonusDuringSession>false</BonusDuringSession>
<UserMessagesStartOfSession>true</UserMessagesStartOfSession>
<UserMessagesDuringSession>true</UserMessagesDuringSession>
<UseAccumulatorStartValues>false</UseAccumulatorStartValues>
<ValidityTime Factor="1">120</ValidityTime>
<Volume>
<Total PreferredFactor="1024" Preferred="500" MinimumFactor="1000000" Minimum="0"></Total>
</Volume>
<VolumeQuotaThreshold Factor="1">0</VolumeQuotaThreshold>
<SendQuotaHoldingTime>false</SendQuotaHoldingTime>
<QuotaHoldingTime Factor="1">0</QuotaHoldingTime>
<SendQuotaConsumptionTime>false</SendQuotaConsumptionTime>
<QuotaConsumptionTime Factor="1">0</QuotaConsumptionTime>
</ServiceConfig>

打开&关闭标签为"ServiceConfig" &其中注释标签具有"ECS_OCS_V1_0.0.0.7"字符串。为此,我使用了下面的sed命令:

sed -n '/<ServiceConfig Id=/ { :a /</ServiceConfig/! { N; ba; }; /<Comment>ECS_OCS_V1_0.0.0.7./ { p; b; }; }' ServiceConfig.xml

这个命令在linux系统上运行正常,但是在sunOS上运行失败,错误如下:

Label too long: /<ServiceConfig Id=/ { :a /</ServiceConfig/! { N; ba; }; /<Comment>ECS_OCS_V1_0.0.0.7./ { p; b; }; }

我不明白是什么原因引起的麻烦

在solaris上(通常是默认设置和/或sed版本),;不像GNU sed那样被解释为新行,使用真正的新行,特别是标签和跳转

sed -n '/<ServiceConfig Id=/ {
:a
  /</ServiceConfig/ !{ 
     N
     ba
     }
  /<Comment>ECS_OCS_V1_0.0.0.7./ { 
     p
     b
     }
  }' ServiceConfig.xml

或使用多个-e动作参数

sed -n -e '/<ServiceConfig Id=/ {' -e ':a' -e '/</ServiceConfig/ !{ N; ba' -e '}; /<Comment>ECS_OCS_V1_0.0.0.7./ { p; b' -e'}' -e '}' ServiceConfig.xml

相关内容

  • 没有找到相关文章