Getting a wider range of google results

Hi there,

Lately, I have got some interest in google search & keywords.
Keeping that in mind, I have read pretty large variety of tutorials
about Ruby, REXML and Nokogiri and made a nice script. However,
using Nokogiri I only get the links that are displayed in the first page
of google when searching for a given keyword.

My question is: how can I expand the number of results so I can get
the links that will be displayed in the first five pages.

Thanks in advance,
Alberto Kap. (gemslust)

I got some poor English. Hope I made myself quite clear, though.
Also, didn’t know if it is related to this forum or Rails.

I think I have nailed it.
What I needed to do is to add start and num parameters. In other words,
http://www.google.com/search?q=keyword&start=1&num=100

where start is the page where it begins to fetch the results and the num
is the number of the results. If I counted it right, each page shows 10
results. So in order to get the results of the first 5 pages. start
should be equal to 1 and num should be equal to 50.