On Mon, 2002-09-02 at 07:07, Lance Hoffmeyer wrote:
> Anyone have any idea how I can create a script that will search
> ebay and put the results in a text file?
> 
> I thought of starting with links
> 
> links http://search.ebay.de/search/search.dll?MfcISAPI
> Command=GetResult&query=Fernandez

$
url="http://search.ebay.de/search/search.dll?MfcISAPICommand=GetResult&query=Fernandez
"

$ links -dump "$url"
$ links -source "$url"

Or just try wget or curl:

$ wget "$url" -O - 
$ curl "$url" 

Or lynx ? 

$ lynx -dump "$url"
$ lynx -source "$url"

Or w3m ?

$ w3m -dump "$url"
$ w3m -dump_source "$url"

Just read 'man curl wget w3m lynx links'.

HTH
Claudio


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to