Sponsored Content
Top Forums Shell Programming and Scripting Extract URLs from HTML code using sed Post 302375751 by drl on Sunday 29th of November 2009 09:06:06 AM
Old 11-29-2009
Hi.

You can use lynx to do most of the hard work:
Code:
#!/usr/bin/env bash

# @(#) s3	Demonstrate extraction of links with "lynx".

echo
set +o nounset
LC_ALL=C ; LANG=C ; export LC_ALL LANG
echo "Environment: LC_ALL = $LC_ALL, LANG = $LANG"
echo "(Versions displayed with local utility \"version\")"
version >/dev/null 2>&1 && version "=o" $(_eat $0 $1) lynx 
set -o nounset
echo

URL="http://www.google.com/search?q=chondroitin&num=100&start=200"

echo " Looking at URL: $URL"

echo
echo " Results:"
lynx -dump -listonly -hiddenlinks=ignore "$URL" |
grep -i -v google |
sed -e 's/^[ 	]*[0-9.]*[ 	]*//' > t1

echo " Extracted about $( wc -l <t1 ) non-google links; first 10:"
head -10 t1

exit 0

producing:
Code:
% ./s3

Environment: LC_ALL = C, LANG = C
(Versions displayed with local utility "version")
OS, ker|rel, machine: Linux, 2.6.26-2-amd64, x86_64
Distribution        : Debian GNU/Linux 5.0 
GNU bash 3.2.39
Lynx Version 2.8.7dev.9 (27 Apr 2008)

 Looking at URL: http://www.google.com/search?q=chondroitin&num=100&start=200

 Results:
 Extracted about 157 non-google links; first 10:

References

http://www.wisegeek.com/what-is-chondroitin.htm
http://74.125.95.132/search?q=cache:ZwdfFnJUbecJ:www.wisegeek.com/what-is-chondroitin.htm+chondroitin&cd=201&hl=en&ct=clnk&gl=us&ie=UTF-8
http://shaokang2002.en.busytrade.com/products/info/24144/_Chondroitin_sulphate.html
http://74.125.95.132/search?q=cache:B32adgCixNAJ:shaokang2002.en.busytrade.com/products/info/24144/_Chondroitin_sulphate.html+chondroitin&cd=202&hl=en&ct=clnk&gl=us&ie=UTF-8
http://www.ebmonline.org/cgi/content/abstract/226/2/144
http://www.ebmonline.org/cgi/content/abstract/230/4/255
http://linkinghub.elsevier.com/retrieve/pii/S0255270106002182

Some clean-up is done by getting rid of google references, and removing the initial whitespace and integer on each line ... cheers, drl
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How do I extract text only from html file without HTML tag

I have a html file called myfile. If I simply put "cat myfile.html" in UNIX, it shows all the html tags like <a href=r/26><img src="http://www>. But I want to extract only text part. Same problem happens in "type" command in MS-DOS. I know you can do it by opening it in Internet Explorer,... (4 Replies)
Discussion started by: los111
4 Replies

2. UNIX for Advanced & Expert Users

sed to extract HTML content

Hiya, I am trying to extract a news article from a web page. The sed I have written brings back a lot of Javascript code and sometimes advertisments too. Can anyone please help with this one ??? I need to fix this sed so it picks up the article ONLY (don't worry about the title or date .. i got... (2 Replies)
Discussion started by: stargazerr
2 Replies

3. Shell Programming and Scripting

sed to extract only floating point numbers from HTML

Hi All, I'm trying to extract some floating point numbers from within some HTML code like this: <TR><TD class='awrc'>Parse CPU to Parse Elapsd %:</TD><TD ALIGN='right' class='awrc'> 64.50</TD><TD class='awrc'>% Non-Parse CPU:</TD><TD ALIGN='right' class='awrc'> ... (2 Replies)
Discussion started by: pondlife
2 Replies

4. Shell Programming and Scripting

SED to extract HTML text data, not quite right!

I am attempting to extract weather data from the following website, but for the Victoria area only: Text Forecasts - Environment Canada I use this: sed -n "/Greater Victoria./,/Fraser Valley./p" But that phrasing does not sometimes get it all and think perhaps the website has more... (2 Replies)
Discussion started by: lagagnon
2 Replies

5. Shell Programming and Scripting

Extract urls from index.html downloaded using wget

Hi, I need to basically get a list of all the tarballs located at uri I am currently doing a wget on urito get the index.html page Now this index page contains the list of uris that I want to use in my bash script. can someone please guide me ,. I am new to Linux and shell scripting. ... (5 Replies)
Discussion started by: mnanavati
5 Replies

6. Shell Programming and Scripting

Remove external urls from .html file

Hi everyone. I have an html file with lines like so: link href="localFolder/..."> link href="htp://..."> img src="localFolder/..."> img src="htp://..."> I want to remove the links with http in the href and imgs with http in its src. I'm having trouble removing them because there... (4 Replies)
Discussion started by: CowCow339
4 Replies

7. 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

8. Shell Programming and Scripting

How to remove urls from html files

Does anybody know how to remove all urls from html files? all urls are links with anchor texts in the form of <a href="http://www.anydomain.com">ANCHOR</a> they may start with www or not. Goal is to delete all urls and keep the ANCHOR text and if possible to change tags around anchor to... (2 Replies)
Discussion started by: georgi58
2 Replies

9. Shell Programming and Scripting

Trying to extract domain and tld from list of urls.

I have done a fair amount of searching the threads, but I have not been able to cobble together a solution to my challenge. What I am trying to do is to line edit a file that will leave behind only the domain and tld of a long list of urls. The list looks something like this: www.google.com... (3 Replies)
Discussion started by: chamb1
3 Replies

10. Shell Programming and Scripting

Awk/sed HTML extract

I'm extracting text between table tags in HTML <th><a href="/wiki/Buick_LeSabre" title="Buick LeSabre">Buick LeSabre</a></th> using this: awk -F "</*th>" '/<\/*th>/ {print $2}' auto2 > auto3 then this (text between a href): sed -e 's/\(<*>\)//g' auto3 > auto4 How to shorten this into one... (8 Replies)
Discussion started by: p1ne
8 Replies
GURLCHECKER(1)						    http://labs.libre-entrepris 					    GURLCHECKER(1)

NAME
gurlchecker - A graphical web link checker that works on a whole site, a single local page or a browser bookmarks file. SYNOPSIS
gurlchecker [-h|--help] [-v|--version] [-u|--http-user user] [-p|--http-passwd password] [-A|--no-urls-args] [URL] DESCRIPTION
This manual page documents the gurlchecker command. gurlchecker is a graphical web link checker. It searches URLs in a whole site, a single local page or a browser bookmarks page, checking them, one by one, in order to know their validity. Furthermore, it can manage entire projects. OPTIONS
This program follows the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. -h, --help Show summary of options. -v, --version Show version of program. -u, --http-user User name for HTTP Basic Authentication. -p, --http-passwd Password for HTTP Basic Authentication. -A, --no-urls-args Ignore URLs arguments. With this option gurlchecker will systematically remove arguments on URLs. It is useful to avoid nasty infinite loops when arguments are randomly generated, for example. AUTHORS
This manual page was written by Daniel Pecos Martinez <dani@netpecos.org> and Emmanuel Saracco <esaracco@users.labs.libre-entreprise.org> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts and no Back-Cover Texts. AUTHORS
Daniel Pecos Martinez Author. Emmanuel Saracco Author. COPYRIGHT
Copyright (C) 2003-2005 Daniel Pecos Martinez, Emmanuel Saracco http://gurlchecker.labs.li Apr 8, 2009 GURLCHECKER(1)
All times are GMT -4. The time now is 11:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy