web page source cleanup


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting web page source cleanup
# 1  
Old 05-23-2011
web page source cleanup

is it possible to pass webpages to remove all tag style information, but leave the tag...

say I have

Code:
<h1 style='font-size: xxx; color: xxxxxx'>headline 1</h1>

i want to get

Code:
<h1>headline 1</h1>

BTW, i got an oneliner here to remove all tags:
Code:
sed -n '/^$/!{s/<[^>]*>//g;p;

Thanks a lot.

Last edited by Franklin52; 05-24-2011 at 12:38 PM.. Reason: Please use code tags
# 2  
Old 05-23-2011
You tried this?
Code:
sed -n  's/ style=[^>]*//p;d'


Last edited by Franklin52; 05-24-2011 at 12:39 PM.. Reason: Please use code tags, thank you
# 3  
Old 05-23-2011
come on. style=... is just an example. html style formats can be really complicated. like <h1 align=center>headline 1</h1>

Quote:
Originally Posted by manuu
You tried this?
sed -n 's/ style=[^>]*//p;d'
# 4  
Old 05-23-2011
come on!!
Code:
sed -n  's/ .*=[^>]*//p;d'


Last edited by Franklin52; 05-24-2011 at 12:39 PM.. Reason: Please use code tags, thank you
# 5  
Old 05-23-2011
thanks man. how i forgot the =. ty

Quote:
Originally Posted by manuu
come on!!
sed -n 's/ .*=[^>]*//p;d'
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Dump web page source as rendered by browser

Hi guys| I need to retrieve a specific .m3u8 link from a web page, which makes use of iframes and JavaScript I tried to get the full source with "wget", "lynx", "w3m" and "phantomjs", but they can't dump all the source, with the part containing the link that i need, which seems to be inside... (0 Replies)
Discussion started by: Marmz
0 Replies

2. Shell Programming and Scripting

Parse Page Source and Extract Links

Hi Friends, I have a bunch of URLs. Each URL will open up an abstract page. But, the source contains a link to the main PDF article. I am looking for a script to do the following task 1. Read input file with URLs. 2. Parse the source and grab all the lines that has the word 'PDF'.... (1 Reply)
Discussion started by: jacobs.smith
1 Replies

3. Shell Programming and Scripting

Save page source, including javascript

I need to get the source code of a webpage. I have tried to use wget and curl, but it doesn't show the necessary javascript part of the source. I don't have to execute it, only to view the source. How do I do that? (1 Reply)
Discussion started by: locoroco
1 Replies

4. Shell Programming and Scripting

Performing extractions on web source page

I have downloaded a web source page to a file. I then egrep a single word to extract a line containing it to another file. I then cat the second file and remove everything before a word and after a second word to capture the phrase desired. This did not work. I used vi to validate that the 2... (1 Reply)
Discussion started by: slak0
1 Replies

5. Shell Programming and Scripting

Getting source code of a page

I want to download a particular page from the internet and get the source code of the page in html format. I want to parse the source code to find a specific parameters using grep command. could someone tell me the linux command to download a specific page and parse the source code of it. ... (1 Reply)
Discussion started by: ahamed
1 Replies

6. Shell Programming and Scripting

write page source to standard output

I'm new to PERL, but I want to take the page source and write it to a file or standard output. I used perl.org as a test website. Here is the script: use strict; use warnings; use LWP::Simple; getprint('http://www.perl.org') or die 'Unable to get page'; exit 0; ... (1 Reply)
Discussion started by: wxornot
1 Replies

7. UNIX for Dummies Questions & Answers

reading web page source in unix

is there a command that allows you to take a url and grab the source code from the page and output it to stdout? i want to know because i want to grab a page and pass it thru another program to analyze the page. any help would be appreciated thanks (3 Replies)
Discussion started by: jaymzlee
3 Replies

8. UNIX for Dummies Questions & Answers

Which comand to show the source code on a web page?

Hi folks! I am using MacOsX that runs freeBSD. Could you tell me what comand to type on the Unix Terminal to display on the terminal the source code of a certain web page? I think something like #<comand> http://www.apple.com will display on the terminal's window the html source code... (11 Replies)
Discussion started by: fundidor
11 Replies

9. UNIX for Dummies Questions & Answers

Web page hosting

I built my website based on Dreamweaver, on Windows platform. My server uses Unix, and the page doesn't look too good. Is there any way to solve this problem without too much of a headache? (1 Reply)
Discussion started by: PCL
1 Replies
Login or Register to Ask a Question