Updating the license tag in XML file with new license


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Updating the license tag in XML file with new license
# 1  
Old 06-29-2011
CPU & Memory Updating the license tag in XML file with new license

Hi All,

I have a XML file : System.xml in which I want to update the license tag with the new data from file licence.xml.
The content of files is in following format:

System.xml:

<?xml version="1.0"?>
<!DOCTYPE Configuration SYSTEM "SystemVariables.dtd">
<usageConfiguration docformat="750">
<SystemEnvironmentVariables>
<CEM>
<Node>
.............
</Node>
<SNMP>
<SNMP.Community>public</SNMP.Community>
<SNMP.Port>12799</SNMP.Port>
</SNMP>
<Log>
<Log.Size>100000</Log.Size>
<Log.Verbosity>DEBUG</Log.Verbosity>
</Log>
</CEM>
<UIS>
<Node>
<Node.Host>ablsdf</Node.Host>
<Node.Port>12800</Node.Port>
<Node.MonitoringEnabled>false</Node.MonitoringEnabled>
<Node.UpdateInterval>30000</Node.UpdateInterval>
<Node.ErrorLogSize>10</Node.ErrorLogSize>
<Node.PeakInterval>30000</Node.PeakInterval>
</Node>
<SNMP>
<SNMP.Community>public</SNMP.Community>
<SNMP.Port>12801</SNMP.Port>
</SNMP>
<Log>
<Log.Size>10000</Log.Size>
<Log.Verbosity>DEBUG</Log.Verbosity>
</Log>
</UIS>
<Licenses>
<License id="21">
<![CDATA[SYSTEM Evaluation
1,Entire System,none,1,03 Mar 2011
Host: FB528400
Issued: 2010-03-03 09-52-08
Key: 302c0214-6f52b3e7-62331491-211792a2-57a74684-319976
a4839989-a9021461-8a2e645a-9bb254cc-d8a6a7-5f3785eb]]>
</License>

</Licenses>
</SystemEnvironmentVariables>
</XACCTusageConfiguration>


licence.xml:

<License id="21">
<![CDATA[SYSTEM Evaluation
1,Entire System,none,1,25 Feb 2012
Host: FB528400
Issued: 2011-02-25 08-22-13
Key: 302c0214-2a86887c-d6362791-141a7a9f-115a7349-3c6f9c
af021467-f9d40ebd-bbcf6391-93614c60-fccee95d-c7ad31]]>
</License>

I want to write a shell script for this.

Last edited by Pramod_T; 06-29-2011 at 07:26 AM..
# 2  
Old 06-29-2011
Code:
awk -v t=0 't==1{getline < "license.xml"}/<Licenses>/{t=1}1' system.xml

This User Gave Thanks to rdcwayx For This Post:
# 3  
Old 07-01-2011
Thanks rdcwayx Smilie

This command updates the required license but tags following the license are still missing i.e. :
</Licenses>
</SystemEnvironmentVariables>
</XACCTusageConfiguration>


So please help on this
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Grepping multiple XML tag results from XML file.

I want to write a one line script that outputs the result of multiple xml tags from a XML file. For example I have a XML file which has below XML tags in the file: <EMAIL>***</EMAIL> <CUSTOMER_ID>****</CUSTOMER_ID> <BRANDID>***</BRANDID> Now I want to grep the values of all these specified... (1 Reply)
Discussion started by: shubh752
1 Replies

2. Shell Programming and Scripting

Moving XML tag/contents after specific XML tag within same file

Hi Forum. I have an XML file with the following requirement to move the <AdditionalAccountHolders> tag and its content right after the <accountHolderName> tag within the same file but I'm not sure how to accomplish this through a Unix script. Any feedback will be greatly appreciated. ... (19 Replies)
Discussion started by: pchang
19 Replies

3. Shell Programming and Scripting

How to add the multiple lines of xml tags before a particular xml tag in a file

Hi All, I'm stuck with adding multiple lines(irrespective of line number) to a file before a particular xml tag. Please help me. <A>testing_Location</A> <value>LA</value> <zone>US</zone> <B>Region</B> <value>Russia</value> <zone>Washington</zone> <C>Country</C>... (0 Replies)
Discussion started by: mjavalkar
0 Replies

4. Red Hat

HP Service Guard SGLX for linux getting error as LICENSE FILE NOT FOUND

HI All, I am using RHEL 5.0 32 Bit, i was trying to install HP Service Guard Cluster in my machine where i installed RHEL5. The problem is that when i am running cmquery -n selva -C mycluster.ascii. Its output is that LICENSE FILE NOT FOUND, so exiting. So i have tried so many things. Pls... (1 Reply)
Discussion started by: skumar7466
1 Replies

5. Shell Programming and Scripting

XML tag replacement from different XML file

We have 2 XML file 1. ORIGINAL.xml file and 2. ATTRIBUTE.xml files, In the ORIGINAL.xml we need some modification as <resourceCode>431048</resourceCode>under <item type="Manufactured"> tag - we need to grab the 431048 value from tag and pass it to database table in unix shell script to find the... (0 Replies)
Discussion started by: balrajg
0 Replies

6. UNIX and Linux Applications

License

Dear Expert, Let say i have already Build Any Application under UNIX platform. Then i want to sell that application for Free. But buyer have to Buy the License for running my application. Somebody knows if there is an any kind of tools or another technique for Generate that License ? ... (1 Reply)
Discussion started by: tpx99
1 Replies

7. AIX

license trouble

Hi, we currently use a valisys licence : it is based on a server (serv1) it is reached only by one workstation (cam1) In all licence files there is line with cam1 et serv1 We want to use cam22 (new workstation) instead of cam1 I made a copy the licences files with remplacing cam1 by cam22... (0 Replies)
Discussion started by: cadmanager
0 Replies

8. UNIX for Dummies Questions & Answers

Which Unix license should I go for?

I'm thinking about getting the Network and Admin licenses for Solaris 9. But some people say Red Hat Linux license is just as good. And there is also IBM's Linux license. Is Solaris still very popular in the corperate world? Looking for a Unix Admin job, which license do you suggest I try... (3 Replies)
Discussion started by: CapsuleCorpJX
3 Replies

9. UNIX for Advanced & Expert Users

cc license errors

This is a duplicated post from the C Forum; Apologies if that's not OK. I have been contacted by one of my developers; they are receiving this error message on our AIX box: 4053: cc EXTRACT.c 1506-507 (W) No licenses available. Contact your program supplier to add additio nal users. ... (2 Replies)
Discussion started by: sam_pointer
2 Replies
Login or Register to Ask a Question