I have a text document that contains a bunch of URLs in this format:
URL = \"sitehere.com\"
What I\'m looking to do is to run curl -K
curl -K
curl -K myconfig.txt -o output.txt
Writes the first output received in the file you specify (overwrites if an old one exists).
curl -K myconfig.txt >> output.txt
Appends all output you receive to the specified file.
Note: The -K is optional.