The java build tool ant provides filter to replace variables by their values
Example:
A file with properties:
db.user.name=user
db.driver=com.informix.jdbc.IfxDriver
A XML file with generic settings (Note the @variables@ )
<driver-class>@db.driver@</driver-class>
<user-name>@db.user.name@</user-name>
becomes after coping using the filter
<driver-class>com.informix.jdbc.IfxDriver</driver-class>
<user-name>user</user-name>
How can this functionallity be achieved with bash and plain unix tools?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…