Read this : "I have been working on an internal tool for our sales and marketing departments. They wanted the ability to provide the URL of a company and return various information. One of the elements they wanted was the number of pages index in Google." Here's a script to do so http://reboltutorial.com/blog/rebol-for-seo-marketing-guys/ goog: http://www.google.com/search?hl=en&btnG=Google+Search&q= domain: "reboltutorial.com" ;modify this string for your search term/keyword replace/all domain " " "+" query: rejoin [goog domain] parse-rule: [ thru "Results" thru "of about " thru <b> copy num to </b> to end ] html-content: read query parse/all html-content parse-rule print num Code (markup):
What you don't get ? What WebMarketing is ? I won't tell you I just repeat what's the Guy says about his Marketing Department Request
Download the rebol engine here: only 1 Mo 1 minute to install http://reboltutorial.com/blog/rebol-download/ It's created by Carl Sassenrath the guy who invented the mythic Amiga OS Then copy and paste the code in console: this is the quickiest way to write and test a script. Later on you can also create a script file in rebol install directory: put rebol [] ON FIRST LINE then type in console: do %scriptname.r (you can put anywhere else but path would be something like %/c/anywhere/scriptname.r) You can also execute in a batch file with rebol.exe c:\anywhere\scriptname.r (this is for windows, adapt for Linux)