I did this with awk version and did not get the uninstall after audacity from previous post. I tried it on all my notes and same issue missing entries.
---------- Post updated at 02:18 PM ---------- Previous update was at 02:17 PM ----------
ah didn't see previous note before my send. Will try this.
---------- Post updated at 07:21 PM ---------- Previous update was at 03:18 PM ----------
Code:
<?xml version="1.0"?>
#This is one line above. Not in actual file
<note version="0.3" xmlns:link="http://beatniksoftware.com/tomboy/link" xmlns:size="http://beatniksoftware.com/tomboy/size" xmlns="http://beatniksoftware.com/tomboy"><title>A installer au menu</title><text xml:space="preserve"><note-content version="0.1" xmlns:link="http://beatniksoftware.com/tomboy/link" xmlns:size="http://beatniksoftware.com/tomboy/size">To install in menu
#This is one line above. Not in actual file
#This is one line above. Not in actual file
#This is one line above. Not in actual file
audacity
#This is one line above. Not in actual file
#This is one line above. Not in actual file
uninstsall
#This is one line above. Not in actual file
</note-content>
#This is one line above. Not in actual file
Ok, this line
Code:
/tomboy/size">To install in menu
is always the ending part of the 3rd line including the title of the note.
After it could be as many lines depending of content and always ending note entries with
Code:
</note-content>
Note though, in some instances there is no carriage return after the last note entry. The command I tried with awk left out the last line if no carriage return!
I am trying to understand the command but, I'm having difficulty understanding some parts.
Did all the notes and worked like a charm.
I'll still have to look at it closer so I can understand how this thing works. Awk is not easy to learn but with examples like this I should get a grip on it.
I have this XML file format and all in one line:
Fri Dec 23 00:14:52 2016 Logged Message:689|<?xml version="1.0" encoding="UTF-8"?><PORT_RESPONSE><HEADER><ORIGINATOR>XMG</ORIGINATOR><DESTINAT... (16 Replies)
Hello everybody,
I have a double mission with some XML files, which is pretty challenging for my actual beginner UNIX knowledge. I need to extract some strings from multiple XML files and create a new XML file with the searched strings..
The original XML files contain the source code for... (12 Replies)
Hi,
I wish to grep for the first instance of <listen-address> value between the first <server></server> tag in an xml file.
Sample xml:
.........
<timeout-seconds>1500</timeout-seconds>
</jta>
<server>
<name>Adminserver_DEV</name>
... (9 Replies)
I have an xml file that generally looks like this:
"<row><dnorpattern>02788920</dnorpattern><description/></row><row><dnorpattern>\+
44146322XXXX</dnorpattern><description/></row><row><dnorpattern>40XXX</dnorpattern><description/></row><row><dnorpattern>11</dn... (4 Replies)
Hi all,
I have the following xml document :
<HEADER><El1>asdf</El1> <El2>3</El2> <El3>asad</El3> <El4>asasdf</El4> <El5>asdf</El5> <El6>asdf</El6> <El7>asdf</El7> <El8>A</El8> <El9>0</El9> <El10>75291028141917</El10> <El11>asdf</El11> <El12>sdf</El12> <El13>er</El13> <El14><El15>asdf... (1 Reply)
Hi all,
I have the following xml file :
<xmlhead><xmlelement1>element1value</xmlelement1>\0a<xmlelement2>jjasd</xmlelement2>...</xmlhead>
As you can see there are no lines or spaces seperating the elements, just the character \0a. How can i find and print the values of a specific element?... (1 Reply)
I have the following string:
<min-pool-size>2</min-pool-size>
When I pipe the string into the following code I am expcting for it to return just the value "2", but its just reurning the whole string. Why??
sed -n '/<min-pool-size>/,/<\/min-pool-size>/p'
Outputting:... (13 Replies)
The script following in this thread allows XML data to be located and extracted in a variety of forms from an XML data stream. Using this utility, it is possible to extract all manner of XML subsets and allow data to be post inserted into the "original" XML at any logical point.
The pipe is... (2 Replies)