|
Wednesday, 23 September 2009 19:58 |
#!/bin/sh #Attempt to fetch. Get a registration page instead. curl -o curl-normal.html http://www.linux-mag.com/id/744/
# Fetch as Google. Get the article content. curl -o curl-google.html -A \ 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)' \ http://www.linux-mag.com/id/744/
|