Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.0k views
in Technique[技术] by (71.8m points)

bash - How replace variable names in an xml-file?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
sed -e 's/@db.driver@/com.informix.jdbc.IfxDriver/g' -e 's/@db.user.name@/user/g' > outfile.xml

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...