<replace file="configure.sh" token="token" value="value">
在文件configure.sh中,所有的token替换为value。
<replace
file="configure.sh"
value="defaultvalue"
propertyFile="src/name.properties">
<replacefilter
token="token1"/>
<replacefilter
token="token2"
value="value2"/>
<replacefilter
token="token3"
property="property.key"/>
<replacefilter>
<replacetoken>token4</replacetoken>
<replacevalue>value4</replacevalue>
</replacefilter>
</replace>
在文件configure.sh中,所有的token1替换为defaultvalue,所有的token2替换为value2,所有的token3替换为propertyFile(src/name.properties)中property.key对应的值,所有的token4替换为value4。
原文地址:http://blog.csdn.net/u011476173/article/details/40080745