Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a working curl script that logs in to a site via a proxy, saves a cookie, then loads the cookie after another log-in to download a file. I need to convert this to use wget because my unix server doesn't have curl installed. Every time I try, the only content that is downloaded is "Virtual User XYZ logged in." Can someone help me with how this is done with wget?

curl -x http://myproxy:8080/ -c cookie.txt -u user:pass http://site.com
curl -O -x http://myproxy:8080/ -b cookie.txt -u user:pass http://site.com/path/to/file.csv
del cookie.txt
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.