I\'m trying to use cURL in a script and get it to not show the progress bar.
I\'ve tried the -s, -silent,
-s
-silent
I found that with curl 7.18.2 the download progress bar is not hidden with:
curl -s http://google.com > temp.html
but it is with:
curl -ss http://google.com > temp.html