CURL examples ============= Public domain ******************************************************************************** ### Track web redirects curl -v -Ls -o /dev/null pmoghadam.com -L Follow redirects -s Silent mode. Don't show progress meter or error messages. -o FILE Write output to instead of stdout -v verbose ******************************************************************************** ### Check HTTP headers curl -Ls -o /dev/null -D - pmoghadam.com -D Write the protocol headers to the specified file. ******************************************************************************** ### Links http://www.codediesel.com/tools/6-essential-curl-commands/ ******************************************************************************** _BY: Pejman Moghadam_ _TAG: curl_ _DATE: 2015-01-14 14:39:56_