Reputation: 4036
Try to download this page: http://www.4shared.com/get/B4AgMkcw/cookies.html I can use wget/firefox to get the whole page, but curl just prints nothing.
Upvotes: 0
Views: 115
Reputation: 92559
Even though you didn't bother to post what you actually tried, in terms of the curl command you used... I'm almost certain you forgot to use the -L
flag to tell curl to follow the redirects..
curl -L -o cookies.html http://www.4shared.com/get/B4AgMkcw/cookies.html
Upvotes: 2