sed - striping out html tags


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sed - striping out html tags
# 1  
Old 12-29-2009
sed - striping out html tags

I have pasted the contents of a log file (swmbackup.wrkstn.1262071383.sales2a) below:
Code:
 
Workstation: sales2a<BR
Vault sales2a-hogwarts will be initialized.<BR
<font color="red"There was a problem mounting /mnt/sales2a/desktop$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/mydocuments$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/office$ </FONT<BR
Vault sales2a-offlinehogwarts will be initialized.<BR
<font color="red"There was a problem mounting /mnt/sales2a/desktop$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/mydocuments$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/office$ </FONT<BR


Now I have a sed command below:

Code:
cat swmbackup.wrkstn.1262071383.sales2a | sed -e 's/<*>//g'


This only outputs:
Code:
 
Workstation: sales2a
Vault sales2a-hogwarts will be initialized.
 
 
 
Vault sales2a-offlinehogwarts will be initialized.


The problem lines do not output. How can I modify the sed command to give me the the other lines in the file without the tags and give me the output below?
Code:
 
Workstation: sales2a
Vault sales2a-hogwarts will be initialized.
There was a problem mounting /mnt/sales2a/desktop$ 
There was a problem mounting /mnt/sales2a/mydocuments$
There was a problem mounting /mnt/sales2a/office$
Vault sales2a-offlinehogwarts will be initialized.
There was a problem mounting /mnt/sales2a/desktop$
There was a problem mounting /mnt/sales2a/mydocuments$
There was a problem mounting /mnt/sales2a/office$

Thanks Smilie

Last edited by Scott; 12-29-2009 at 12:13 PM.. Reason: Added code tags to HTML and output
# 2  
Old 12-29-2009
Try this:

Code:
sed 's/<.*"//;s/<.*//' file

# 3  
Old 12-29-2009
thanks

This is close enough. I can live with the greater than signs at the begining of each line.

Thanks again!
# 4  
Old 12-29-2009
MySQL

Code:
sed -e 's/<[^>]*>//g' file

# 5  
Old 12-30-2009
Quote:
Originally Posted by Aia
Code:
sed -e 's/<[^>]*>//g' file

Aia,

I don't see any changes with your command:

Code:
$ cat file
Workstation: sales2a<BR
Vault sales2a-hogwarts will be initialized.<BR
<font color="red"There was a problem mounting /mnt/sales2a/desktop$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/mydocuments$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/office$ </FONT<BR
Vault sales2a-offlinehogwarts will be initialized.<BR
<font color="red"There was a problem mounting /mnt/sales2a/desktop$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/mydocuments$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/office$ </FONT<BR
$
$ sed -e 's/<[^>]*>//g' file
Workstation: sales2a<BR
Vault sales2a-hogwarts will be initialized.<BR
<font color="red"There was a problem mounting /mnt/sales2a/desktop$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/mydocuments$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/office$ </FONT<BR
Vault sales2a-offlinehogwarts will be initialized.<BR
<font color="red"There was a problem mounting /mnt/sales2a/desktop$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/mydocuments$ </FONT<BR
<font color="red"There was a problem mounting /mnt/sales2a/office$ </FONT<BR
$

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to parse a specifc value between html tags using sed?

Hi, im trying to read a Temperature value from html code. So far i have managed to reduce the whole html page down to this single line with the following sed command:sed -n '/Temperature/p' $temp_temperature | tee temp_string <TD width='350'>Temperature :</td><td>25... (2 Replies)
Discussion started by: naittis
2 Replies

2. Shell Programming and Scripting

Replace HTML tags using sed regex

I need all the end tags of </font> to be replaced with new line yet enclosing tag to be retained </font>. Please help me in this regard. Input: <font>abc</font>def<font>ghi</font> Output: <font>abc</font> def <font>ghi</font> (3 Replies)
Discussion started by: Badhrish
3 Replies

3. UNIX for Dummies Questions & Answers

Replacing HTML tags with sed

Ok, so this is stupid simple, and I know I am going to feel like an idiot when I get help. I am altering a HTML report that has contraband in it so that the links to said contraband and the images are not shown. The link/img pairs are in the form of : <a... (5 Replies)
Discussion started by: twjolson
5 Replies

4. Shell Programming and Scripting

Removing all except couple of html tags from html file

I tried to find elegant (or at least simple) way to remove all but couple of html tags from html file, but all examples I found dealt with removing all the tags. The logic of the script would be: - if there is <li> or <ul> on the line, do nothing (=write same line to output) - if there is:... (0 Replies)
Discussion started by: juubuntu
0 Replies

5. Shell Programming and Scripting

help with sed needed to extract content from html tags

Hi I've searched for it for few hours now and i can't seem to find anything working like i want. I've got webpage, saved in file par with form like this: <html><body><form name='sendme' action='http://example.com/' method='POST'> <textarea name='1st'>abc123def678</textarea> <textarea... (9 Replies)
Discussion started by: seb001
9 Replies

6. Shell Programming and Scripting

How to use sed to remove html tags including text between them

How to use sed to remove html tags including text between them? Example: User <b> rolvak </b> is stupid. It does not using <b>OOP</b>! and should output: User is stupid. It does not using ! Thank you.. (2 Replies)
Discussion started by: alphagon
2 Replies

7. Shell Programming and Scripting

Replace space, that is not in html tags <> with new line using sed

Hi, I am working on transforming html code text into the .vert text format. I want to use linux utility sed. I have this regexp which should do the work: s/ \(?!*>\)/\n/g. I use it like this with sed: echo "you <we try> there" | sed 's/ \(?!*>\)/\n/g' ... The demanded output should be: you <we... (5 Replies)
Discussion started by: matt1311
5 Replies

8. Shell Programming and Scripting

Problem with 'sed' command while using HTML tags

Hello, I am using sed as follows - sed 's/CONTACT SYSTEMS! Some payments have been rejected/<B><font color="red" size="5.0pt"CONTACT SYSTEMS! Some payments have been rejected</font></B>/' $REPORT_FILE But while executing this, I am getting the error as - sed: command garbled &... (5 Replies)
Discussion started by: The Observer
5 Replies

9. Shell Programming and Scripting

How to supplement HTML tags with SED

I am cleaning up HTML with sed. With the regexp <a name="+"></a><h>*<span class="mw-headline" >+</span></h> I can find the tags I need. But when I place them in a sed command, sed fails. So I started building up from a smaller command. This is where I am now: sed -r -e s/"<a... (3 Replies)
Discussion started by: DocBrewer
3 Replies

10. Shell Programming and Scripting

unsing sed to strip html tags - help

Hi, I am trying to strip html tags of a string for example <TD>no problem</TD> the sesult should be no problem but could never get rid off all the tags sed 's/<..D>//g' Please help, I am new (3 Replies)
Discussion started by: zap
3 Replies
Login or Register to Ask a Question