Free Script for SEO Guys

Discussion in 'Products & Tools' started by rebtut, Sep 6, 2009.

  1. #1
    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):

     
    rebtut, Sep 6, 2009 IP
  2. Sweely

    Sweely Well-Known Member

    Messages:
    1,467
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    165
    #2
    I don't get it...
     
    Sweely, Sep 6, 2009 IP
  3. rebtut

    rebtut Peon

    Messages:
    21
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    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 :)
     
    rebtut, Sep 6, 2009 IP
  4. googledaily.com

    googledaily.com Peon

    Messages:
    285
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    you dont get anything ever:D
    :D
     
    googledaily.com, Sep 6, 2009 IP
  5. googledaily.com

    googledaily.com Peon

    Messages:
    285
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #5
    thanks rubtut..its very helpful
     
    googledaily.com, Sep 6, 2009 IP
  6. googledaily.com

    googledaily.com Peon

    Messages:
    285
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #6
    how to use this script..?
     
    googledaily.com, Sep 6, 2009 IP
  7. Awan-G

    Awan-G Active Member

    Messages:
    1,758
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    78
    #7
    How is useful for seo guys and how to use this in my sites

    can you explain that ?
     
    Awan-G, Sep 6, 2009 IP
  8. darknight

    darknight Peon

    Messages:
    63
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Thanks for the script. Would like to find further
     
    darknight, Sep 6, 2009 IP
  9. hello_welcome

    hello_welcome Well-Known Member

    Messages:
    1,632
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    155
    #9
    thanks for your script this good Script for SEO
     
    hello_welcome, Sep 6, 2009 IP
  10. jhbalaji

    jhbalaji Well-Known Member

    Messages:
    1,474
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    140
    #10
    Thanks for the script mate :)
     
    jhbalaji, Sep 6, 2009 IP
  11. rebtut

    rebtut Peon

    Messages:
    21
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #11
    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)
     
    rebtut, Sep 6, 2009 IP
  12. rootbinbash

    rootbinbash Peon

    Messages:
    2,198
    Likes Received:
    88
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Pretty useless
     
    rootbinbash, Sep 8, 2009 IP
  13. roni123

    roni123 Peon

    Messages:
    41
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    will definitely give it a go...!
     
    roni123, Sep 8, 2009 IP
  14. rebtut

    rebtut Peon

    Messages:
    21
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #14
    It's just an easy example, you can of course parse much more complex thing like PHP code itself.
     
    rebtut, Sep 8, 2009 IP