Need the script to remove common strings,tags etc


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need the script to remove common strings,tags etc
# 1  
Old 02-11-2012
Need the script to remove common strings,tags etc

I have a file say "example.xml" and the contents of this example.xml are

<project name="platform/packages/wallpapers/Basic" path="packages/wallpapers/Basic" revision="225e410f054c4ad5c828b0fec9be1b47c4376711"/>
<project name="platform/packages/wallpapers/Galaxy4" path="packages/wallpapers/Galaxy4" revision="536e9c842b63ad618936b758076edf18f9726d98"/>
<project name="platform/packages/wallpapers/HoloSpiral" path="packages/wallpapers/HoloSpiral" revision="d816c1b97de9609d5479ae85611f9b2bf5f609aa"/>
<project name="platform/packages/wallpapers/LivePicker" path="packages/wallpapers/LivePicker" revision="ad8535ee889d92348da3faa63dcd5ea097952dd9"/>


Now the expected out should be :
Quote:
platform/packages/wallpapers/Basic
225e410f054c4ad5c828b0fec9be1b47c4376711
platform/packages/wallpapers/Galaxy4
536e9c842b63ad618936b758076edf18f9726d98
platform/packages/wallpapers/HoloSpiral
d816c1b97de9609d5479ae85611f9b2bf5f609aa
platform/packages/wallpapers/LivePicker
ad8535ee889d92348da3faa63dcd5ea097952dd9

So I need a script which does this. All I need is just remove
Quote:
<project name=""path="packages/wallpapers/Basic" revision=""/>
.


Thanks in advance.
# 2  
Old 02-11-2012
you can try
Code:
awk -F'"' '{print $2"\n"$6}' urfile.xml

Moderator's Comments:
Mod Comment How to use code tags when posting data and code samples.

Last edited by Franklin52; 02-11-2012 at 10:49 AM.. Reason: Please use code tags for data and code samples, thank you
This User Gave Thanks to ambious For This Post:
# 3  
Old 02-11-2012
If your input is well-formed XML, it would be better to use XML XPath tools to extract the data.

Install Perl-XML-XPath in your system and you can use the following to do the job. This perl script take input from STDIN
Code:
#!/usr/bin/perl

use XML::XPath;
$xp = XML::XPath->new(ioref => \*STDIN);
$nodeset = $xp->find('//project');
foreach $node ($nodeset->get_nodelist) {
  print $node->getAttribute('name');
  print $node->getAttribute('revision');
}


Last edited by chihung; 02-12-2012 at 08:18 PM..
This User Gave Thanks to chihung For This Post:
# 4  
Old 02-13-2012
thanks

thanks a lot for quick reply.

ambious code is working perfectly.

Presently the output is :

Code:
platform/packages/wallpapers/Basic
225e410f054c4ad5c828b0fec9be1b47c4376711
platform/packages/wallpapers/Galaxy4
536e9c842b63ad618936b758076edf18f9726d98
platform/packages/wallpapers/HoloSpiral
d816c1b97de9609d5479ae85611f9b2bf5f609aa
platform/packages/wallpapers/LivePicker
ad8535ee889d92348da3faa63dcd5ea097952dd9

Now I need to insert a text at every alternate line : I want output something like this :

Code:
Project platform/packages/wallpapers/Basic
225e410f054c4ad5c828b0fec9be1b47c4376711
Project platform/packages/wallpapers/Galaxy4
536e9c842b63ad618936b758076edf18f9726d98
Project platform/packages/wallpapers/HoloSpiral
d816c1b97de9609d5479ae85611f9b2bf5f609aa
Project platform/packages/wallpapers/LivePicker
ad8535ee889d92348da3faa63dcd5ea097952dd9


I did google it.But most of them use sed command. I want it to be done using a single command.


But thanks both of for quick response.Thank you very much,

acdc
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read xml tags and then remove the tag using shell script

<Start> <Header> This is header section </Header> <Body> <Body_start> This is body section <a> <b> <c> <st>111</st> </c> <d> <st>blank</st> </d> </b> </a> </Body_start> <Body_section> This is body section (3 Replies)
Discussion started by: RJG
3 Replies

2. Shell Programming and Scripting

Common prefix of a list of strings

Is there a simple way to find the longest common prefix of a space-separated list of strings, optionally by field? For example, given input: "aaa_b_cc aaa_b_cc_ddd aaa_b_cc aaa_b_cd"with no field separator, output: aaa_b_cwith _ field separator, output: aaa_bI have an awk solution which... (1 Reply)
Discussion started by: CarloM
1 Replies

3. Shell Programming and Scripting

awk or sed script to remove strings

Below am trying to separate FA-7A:1, In output file it should display 7A 1 Command am using Gives same output as below format: 22B7 10000000c9720873 0 22B7 10000000c95d5d8b 0 22BB 10000000c97843a2 0 22BB 10000000c975adbd 0 Not showing FA ports as required format... (5 Replies)
Discussion started by: aix_admin_007
5 Replies

4. Shell Programming and Scripting

How to remove common file names from text files

I'm running on freebsd -- with a default shell of csh. I have two files named A and B. Each line of each file contains a file name. How can I write a script that removes all the file names in file B from A. I tried to use perl to create a huge regular expression with "|" separating the file... (2 Replies)
Discussion started by: siegfried
2 Replies

5. Shell Programming and Scripting

How to remove lines containing strings

Hi Guys, I need some script in removing lines containing strings like ",, ," and "rows". Retain only numbers as the output. See below for the input and output file. INPUT FILE: 9817 9832 6285 6312 6313 6318 ,, , 6329 7078 7098 7130 7959 7983 (7 Replies)
Discussion started by: pinpe
7 Replies

6. Shell Programming and Scripting

Script to find NOT common strings in two files

Hi all, I'd like you to help or give any advise about the following: I have two (2) files, file1 and file2, both files have information common to each other. The contents of file1 is a subset of the contents of file2: file1: errormsgadmin esdp esgservices esignipa iprice ipvpn irm... (18 Replies)
Discussion started by: hnux
18 Replies

7. Shell Programming and Scripting

Script to find NOT common strings in two files

Hi all, I'd like you to help or give any advise about the following: I have two (2) files, file1 and file2, both files have information common to each other. The contents of file1 is a subset of the contents of file2: file1: errormsgadmin esdp esgservices esignipa iprice ipvpn irm... (0 Replies)
Discussion started by: hnux
0 Replies

8. UNIX for Advanced & Expert Users

Find common Strings in two large files

Hi , I have a text file in the format DB2: DB2: WB: WB: WB: WB: and a second text file of the format Time=00:00:00.473 Time=00:00:00.436 Time=00:00:00.016 Time=00:00:00.027 Time=00:00:00.471 Time=00:00:00.436 the last string in both the text files is of the... (4 Replies)
Discussion started by: kanthrajgowda
4 Replies

9. Shell Programming and Scripting

Simple script to find common strings in two files

Hi , I want to write a simple script. I have two files file1: BCSpeciality Backend CB CBAPQualDisp CBCimsVFTRCK CBDSNQualDisp CBDefault CBDisney CBFaxMCGen CBMCGeneral CBMCQualDisp file2: CSpeciality Backend (8 Replies)
Discussion started by: ramky79
8 Replies

10. Shell Programming and Scripting

different take on common ?: search for two strings and remove lines between them

Thank you for assisting, I've got a partial solution just needs a tweak. Hulk-BASH$ cat somefile.txt oh there is some stuff here some more stuff here START_LABEL stuff I want more stuff I want END_LABEL other stuff here too and even more stuff here too Hulk-BASH$ Hulk-BASH$ sed... (8 Replies)
Discussion started by: laser
8 Replies
Login or Register to Ask a Question