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 text doc that contains a bunch of urls in the format of

URL = "sitehere.com"

What I'm looking to do its run curl -K myfile.txt but I want to get the output or the response curl is returning. How can I do this?

share|improve this question

1 Answer

up vote 0 down vote accepted
curl -K myconfig.txt -o output.txt 

works well for me.

curl -K myconfig.txt >> output.txt

to append all output to one file.

share|improve this answer
Sorry maybe I need to clarify - the doc with all my URL's in the format about is called myfile.txt so I do curl -K myfile.txt and it runs though each one but I don't get the output into any file. – Tony Dec 6 '12 at 0:48
I edited my answer, on MAC OS X this is running fine, and gets me response from google.com to output.txt – Alex2php Dec 6 '12 at 0:52
Thanks, how do I get it to append to file? – Tony Dec 6 '12 at 0:54
Then, instead of "-o output.txt" use >> output.txt. That will sent stdout output to output.txt and will append it. – Alex2php Dec 6 '12 at 0:59

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.