Sponsored Content
Full Discussion: XML Parsing using awk
Top Forums Shell Programming and Scripting XML Parsing using awk Post 302733757 by itkamaraj on Wednesday 21st of November 2012 03:39:20 AM
Old 11-21-2012
something like this.. ?

Code:
 
$ nawk -F"[<>]" -v pat="SeqNo" '$0~pat{print $3}' a.txt
43156489079
43156489079
$ nawk -F"[<>]" -v pat="redcode" '$0~pat{print $3}' a.txt
SKNEQGGEVHW
SKNEQGGEVHW
$ nawk -F"[<>]" -v pat="AuthenticationToken" '$0~pat{print $4}' a.txt
![CDATA[nY+sHZ2PrBmdj6wVnY]]
![CDATA[nY+sHZ2PrBmdj6wVnY]]

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Parsing XML dynamic data via awk?

I am trying to use a line of output in an XML file as input in another new XML file for processing purposes via a shell script. Since I am a newbie though, I'm not sure how to do this since the data is different everytime. I am using this technique with static data right now: echo -n "Running... (5 Replies)
Discussion started by: corwin43
5 Replies

2. Shell Programming and Scripting

parsing xml with awk/sed

Hi people!, I need extract from the file (test-file.txt) the values between <context> and </context> tag's , the total are 7 lines,but i can only get 5 or 2 lines!!:confused: Please look my code: #awk '/context/{flag=1} /\/context/{flag=0} !/context/{ if (flag==1) p rint $0; }'... (3 Replies)
Discussion started by: ricgamch
3 Replies

3. Shell Programming and Scripting

Parsing xml using awk - more help needed

As per another thread - https://www.unix.com/shell-programming-scripting/81027-how-can-i-parse-xml-file-2.html I am using the following to extract the Subaccid and RecAccTotal from the xm file below awk -v v=SubaccId -F'' '$2==v{s=$3;getline;a+=$3}END {for (i in a)print v,i,a}' file Can... (6 Replies)
Discussion started by: frustrated1
6 Replies

4. Shell Programming and Scripting

parsing xml using awk

hello , i am trying to parse xml using awk however its a little bit tricky as i want <databases> <source> <host>prod</host> <port>1522</port> <tns>GP1</tns> <user>P11</user>... (6 Replies)
Discussion started by: amit1_x
6 Replies

5. Shell Programming and Scripting

parsing(xml) using nawk/awk

Hi , I have an xml format as shown below: <Info> <last name="sean" first name="john"/> <period="5" time="11"/> <test value="1",test2 value="2",test3 value="3",test4 value="5"> <old> <value1>1</value1> <value2>2</value2> </old> <new> <value1>4</value1> <value2>3</value2> </new>... (1 Reply)
Discussion started by: natalie23
1 Replies

6. Shell Programming and Scripting

Parsing XML in awk : OFS does not work as expected

Hi, I am trying to parse regular XML file where I have to reduce number of decimal points in some xml elements. I am using following AWK command to achive that : #!/bin/ksh EDITCMD='BEGIN { FS = ""; OFS=FS } { if ( $3 ~ "*\\.*" && length(substr($3,1+index($3,"."))) == 15 ) {... (4 Replies)
Discussion started by: martin.franek
4 Replies

7. Shell Programming and Scripting

Help needed for parsing large XML with awk.

My XML structure looks like: <?xml version="1.0" encoding="UTF-8"?> <SearchRepository> <SearchItems> <SearchItem> ... </SearchItem> <SearchItem> ... ... (1 Reply)
Discussion started by: jasonjustice
1 Replies

8. Shell Programming and Scripting

xml parsing with awk

hi all.. need your help again.. i have xml file and i want to parsing some data from the xml file.. <ex-name="keroco"> <................> <................> <................> <br-name="cincai"> <ship="123456"> <...................> ... (3 Replies)
Discussion started by: buncit8
3 Replies

9. Shell Programming and Scripting

XML: parsing of the Google contacts XML file

I am trying to parse the XML Google contact file using tools like xmllint and I even dived into the XSL Style Sheets using xsltproc but I get nowhere. I can not supply any sample file as it contains private data but you can download your own contacts using this script: #!/bin/sh # imports... (9 Replies)
Discussion started by: ripat
9 Replies

10. Shell Programming and Scripting

Multiple command execution inside awk command during xml parsing

below is the output xml string from some other command and i will be parsing it using awk cat /tmp/alerts.xml <Alert id="10102" name="APP-DS-ds_ha-140018-componentFailure-S" alertDefinitionId="13982" resourceId="11427" ctime="1359453507621" fixed="false" reason="If Event/Log Level(ANY) and... (2 Replies)
Discussion started by: vivek d r
2 Replies
doc::lua-oocairo-pattern(3)				       Lua OO Cairo binding				       doc::lua-oocairo-pattern(3)

Name
       lua-oocairo-pattern - Cairo pattern objects

Introduction
       A pattern object is any one of several things that can be used as the source for a Cairo context, defining what colours and transparencies
       will be used for drawing.  These objects can be created explicitly with the various "pattern_create_*" functions in the module table (see
       lua-oocairo(3) for details), or implicitly by calling methods like "cr:set_source_rgb()" on a context object (see lua-oocairo-context(3)).

       Pattern objects can be compared with the "==" operator.	This will compare the identity of the objects, so different Lua objects which
       refer to the same "cairo_pattern_t" will compare as equal.

Methods
       pat:add_color_stop_rgb (offset, r, g, b)
	   Add a new colour stop to a gradient (either linear or radial, it doesn't matter).  The offset is a number from zero (the start of the
	   line or the first circle of the gradient) to one (the end of the line or the second circle).  The colour values must also be numbers
	   from zero to one.  The alpha level is set to fully transparent.

	   This will throw an exception if called on a pattern which isn't a gradient.

       pat:add_color_stop_rgba (offset, r, g, b, a)
	   Same as "pat:add_color_stop_rgb()" above, but the alpha value can be set to less than one to give some transparency to the gradient.
	   This can be used for gradients which fade away into nothing for example.

       pat:get_color_stops ()
	   Returns the color stops defined on a linear or radial gradient.  Throws an exception if called on any other type of pattern.

	   The return value will be a table, an array with one entry per color stop.  Each entry will be a table containing five numbers, in the
	   following order: offset, red, green, blue, alpha.

       pat:get_extend ()
	   Return the current method of extending the pattern beyond its limits.  The return value will be one of the strings accepted by the
	   "pat:set_extend()" method.

       pat:get_filter ()
	   Return the current filter method, which will be one of the strings accepted by the "pat:set_filter()" method.

       pat:get_linear_points ()
	   Return the start and end points of a linear gradient as four numbers.  Throws an exception if called on any other type of pattern.

       pat:get_matrix ()
	   Return the current transformation matrix used for the pattern.  See lua-oocairo-matrix(3).

       pat:get_radial_circles ()
	   Return the start and end circles of a radial gradient as six numbers.  Throws an exception if called on any other type of pattern.

       pat:get_rgba ()
	   Return the colour value and alpha level for a solid colour pattern.	Throws an exception for any other type of pattern.  The return
	   values will be four numbers, in the following order: red, green, blue, alpha.

       pat:get_surface ()
	   Return the surface object (see lua-oocairo-surface(3)) used for a surface pattern.  Throws an exception for any other kind of pattern.

       pat:get_type ()
	   Returns a string indicating what kind of pattern object this is.  The return value will be one of the following:

	   linear
	   radial
	   solid
	   surface
       pat:set_extend (extendtype)
	   Set the way in which the pattern should be extended beyond its defined limits.  The argument must be one of the following strings:

	   none
	       Everything outside the area defined by the pattern is fully transparent.

	   repeat
	       Pattern tiled by endlessly repeating it.

	   reflect
	       Pattern tiled by reflecting it at its edges.

	   pad Whatever is at the edge of the pattern is extended outwards.

       pat:set_filter (filtertype)
	   Set the filter method used for picking colours from the pattern when it is being used to render something.  The argument must be one of
	   the following strings:

	   fast
	       Fast interpolation that is likely to be low quality in some cases (but probably OK for a smooth gradient).

	   good
	       Reasonably good quality interpolation.

	   best
	       The highest quality interpolation available, but likely very slow.

	   nearest
	       Pick colour of nearest pixel.

	   bilinear
	       Interpolate between pixels.

	   gaussian
	       Gaussian blur, but this isn't implemented yet.

       pat:set_matrix (matrix)
	   Set the transformation matrix used for the pattern, as a table of six numbers.  See lua-oocairo-matrix(3).

1.4								    2011-05-18					       doc::lua-oocairo-pattern(3)
All times are GMT -4. The time now is 11:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy