hibernate.cfg 包含数据库配置,例如用户名,密码,dbname和dbhost
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://DBHOST:3306/DBNAME?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&tcpKeepAlive=true</property>
<property name="connection.username">DBUSER</property>
<property name="connection.password">DBPASS</property>
我需要一个bash脚本来提取这些数据。
答案 0 :(得分:2)
使用xmlstarlet,您可以使用xpath。
$ xmlstarlet sel -t -v './/property[starts-with(@name, "connection.")]' hiberate.cfg 2>/dev/null ; echo
com.mysql.jdbc.Driver
jdbc:mysql://DBHOST:3306/DBNAME?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&tcpKeepAlive=true
DBUSER
DBPASS
$