Working with cURL
Downloading files
curl <url>
curl http://www.google.comcurl <url> > <file>
curl http://www.google.com > google.txt
curl -o <file> <url>
curl -o google.txt http://www.google.comcurl -O <url>
curl -O https://www.google.com/intl/en/about.htmlcurl -O <url1> <url2> <url3>curl -L <url>
curl -L http://google.comSending requests
Last updated