I need to scrape a website for all sites and append an Paramater, e.g.
www.theSite.com/allpages?myPara=us
Now what I got is wget --recursive to get all sites, but that doesn't append the parameter and the content is useless. I need to do this in a 2nd step:
curl http://theSite.com/allpages?myPara=us | grep -c MyString
So in essence I am looking for a particular String in a entire Website to which I got only access via HTTP.