我有一个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>
阻止开放&amp;关闭标签为“ServiceConfig”&amp;其中comment标签具有“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; }; }
我无法理解造成这种麻烦的原因。
答案 0 :(得分:1)
在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