I am on Oracle Solaris 10 and trying to grep a word from xml file using combination of awk and cut command. I have below mentioned string in xml file.
<Resource driverClassName="oracle.jdbc.OracleDriver" name="jdbc/LiferayPool" type="javax.sql.DataSource" username="PROD_LIFERAY" password="" url="jdbc:oracle:thin:@server02:1521:PROD0100 " maxActive="20" maxIdle="10" minIdle="3" maxWait="10000" initialSize="3" validationInterval="60000" testOnBorrow="true" validationQuery="select 1 from dual" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"/>
I want to build awk command to grep word from the position where currently PROD0100 is shown in above example. I appreciate if someone can help me to figure out.