Question : Beginning programmer needs help with keyword search

Hi, I am a programming beginner, with little knowledge. I have a part time business where I use classifieds to search for stuff. I search about 100 local classifieds/newspapers to find things and every morning I need to go to each individual site. I was hoping to enter the search in one location (where ever it may be) and have every ad of a specific keyword show up.

There are about 10 different keywords I'd want to search in all 100 sites but was hoping they could show up in a single location whenever the keyword appears on that site


Thansk

Answer : Beginning programmer needs help with keyword search

maybe something like this?
#!/usr/bin/perl
use LWP::Simple;
for( qw(
http://site1.com?query=keyword
http://site2.com?query=keyword
http://site3.com?query=keyword
...
)
){
    getprint $_;
}
Random Solutions  
 
programming4us programming4us